Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
43da1635
Commit
43da1635
authored
Dec 29, 2003
by
Dries
Browse files
- Fixed bug
#4842
: get_cfg_var() -> ini_get()
parent
81b21bc0
Changes
2
Hide whitespace changes
Inline
Side-by-side
cron.php
View file @
43da1635
...
...
@@ -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
);
}
...
...
update.php
View file @
43da1635
...
...
@@ -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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment