Skip to content
Snippets Groups Projects
Commit 43da1635 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Fixed bug #4842: get_cfg_var() -> ini_get()

parent 81b21bc0
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -8,7 +8,7 @@
** If not in 'safe mode', increase the maximum execution time:
*/
if (!get_cfg_var("safe_mode")) {
if (!ini_get("safe_mode")) {
set_time_limit(240);
}
......
......@@ -15,7 +15,7 @@
// Disable access checking?
$access_check = 1;
if (!get_cfg_var("safe_mode")) {
if (!ini_get("safe_mode")) {
set_time_limit(180);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment