Index: trunk/phase3/config/Installer.php |
— | — | @@ -2200,7 +2200,7 @@ |
2201 | 2201 | function getShellLocale( $wikiLang ) { |
2202 | 2202 | # Give up now if we're in safe mode or open_basedir |
2203 | 2203 | # It's theoretically possible but tricky to work with |
2204 | | - if ( wfIniGetBool( "safe_mode" ) || ini_get( 'open_basedir' ) ) { |
| 2204 | + if ( wfIniGetBool( "safe_mode" ) || ini_get( 'open_basedir' ) || !function_exists('exec') ) { |
2205 | 2205 | return false; |
2206 | 2206 | } |
2207 | 2207 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -510,6 +510,8 @@ |
511 | 511 | assume the user object is equal to the current-user object ($wgUser) |
512 | 512 | * (bug 20517) Cancel link from edit page now returns to the old version when |
513 | 513 | editing an old version |
| 514 | +* (bug 16902) Installer no longer shows warnings when exec() has been disabled |
| 515 | + by disable_functions |
514 | 516 | |
515 | 517 | == API changes in 1.16 == |
516 | 518 | |