X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=install-utils.inc;h=6a99ec5535a413ed02ebfff42344201c69521357;hb=dd0a2536d03b641a4a8f7b7541b9978387b3e315;hp=a9892578c038078b43fb7224ec19895736de75f6;hpb=a870a6c74bb1be2241588cb3c9051fe30e180881;p=lhc%2Fweb%2Fwiklou.git diff --git a/install-utils.inc b/install-utils.inc index a9892578c0..6a99ec5535 100644 --- a/install-utils.inc +++ b/install-utils.inc @@ -112,7 +112,7 @@ function dbsource( $fname, $db = false ) { /** * Get the value of session.save_path * - * Per http://uk.php.net/manual/en/ref.session.php#ini.session.save-path, + * Per http://www.php.net/manual/en/ref.session.php#ini.session.save-path, * this might have some additional preceding parts which need to be * ditched * @@ -127,7 +127,7 @@ function mw_get_session_save_path() { /** * Is dl() available to us? * - * According to http://uk.php.net/manual/en/function.dl.php, dl() + * According to http://www.php.net/manual/en/function.dl.php, dl() * is *not* available when `enable_dl` is off, or under `safe_mode` * * @return bool @@ -135,6 +135,6 @@ function mw_get_session_save_path() { function mw_have_dl() { return function_exists( 'dl' ) && is_callable( 'dl' ) - && ini_get( 'enable_dl' ) - && !ini_get( 'safe_mode' ); + && wfIniGetBool( 'enable_dl' ) + && !wfIniGetBool( 'safe_mode' ); } \ No newline at end of file