https://bugzilla.wikimedia.org/show_bug.cgi?id=28054
Andre Klapper <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution|--- |WORKSFORME --- Comment #5 from Andre Klapper <[email protected]> --- Full list looks like completed so closing. Only one I'm wondering about is ./includes/installer/Installer.php: $this->showError( 'config-using531', phpversion() ); but that's because the exact PHP version is not known. $:andre\> grep -r PHP_VERSION . Binary file ./.git/objects/pack/pack-805102c3dd67f75022fbf76a17f81b1d33a68868.pack matches ./includes/json/FormatJson.php: if ( !function_exists( 'json_encode' ) || ( $pretty && version_compare( PHP_VERSION, '5.4.0', '<' ) ) ) { ./includes/debug/Debug.php: 'phpVersion' => PHP_VERSION, ./includes/installer/Installer.php: const MINIMUM_PHP_VERSION = '5.3.2'; ./includes/installer/Installer.php: if( version_compare( $phpVersion, self::MINIMUM_PHP_VERSION, '>=' ) ) { ./includes/installer/Installer.php: $this->showMessage( 'config-env-php-toolow', $phpVersion, self::MINIMUM_PHP_VERSION ); ./includes/CryptRand.php: && ( !wfIsWindows() || version_compare( PHP_VERSION, '5.3.4', '>=' ) ) ./includes/GlobalFunctions.php: if ( $limit && version_compare( PHP_VERSION, '5.4.0', '>=' ) ) { ./includes/GlobalFunctions.php: $php_ver = PHP_VERSION; ./includes/GlobalFunctions.php: ( wfIsWindows() && version_compare( PHP_VERSION, '5.3.3', '>=' ) ) ./maintenance/dev/includes/php.sh: if "$binary" -r 'exit((int)!version_compare(PHP_VERSION, "5.4", ">="));'; then ./maintenance/Maintenance.php:if ( !function_exists( 'version_compare' ) || version_compare( PHP_VERSION, '5.3.2' ) < 0 ) { ./maintenance/checkSyntax.php: $useParseKit = function_exists( 'parsekit_compile_file' ) && version_compare( PHP_VERSION, '5.3', '<' ); $:andre\> grep -r phpversion . ./index.php:if ( !function_exists( 'version_compare' ) || version_compare( phpversion(), '5.3.2' ) < 0 ) { ./api.php:if ( !function_exists( 'version_compare' ) || version_compare( phpversion(), '5.3.2' ) < 0 ) { ./resources/mediawiki/mediawiki.debug.js: bitDiv( 'phpversion' ) ./includes/specials/SpecialVersion.php: $software['[http://www.php.net/ PHP]'] = phpversion() . " (" . PHP_SAPI . ")"; ./includes/PHPVersionError.php: $phpVersion = phpversion(); ./includes/api/ApiQuerySiteinfo.php: $data['phpversion'] = phpversion(); ./includes/installer/Installer.php: $phpVersion = phpversion(); ./includes/installer/Installer.php: $this->showError( 'config-using531', phpversion() ); ./maintenance/install.php:if ( !function_exists( 'version_compare' ) || ( version_compare( phpversion(), '5.3.2' ) < 0 ) ) { ./maintenance/update.php:if ( !function_exists( 'version_compare' ) || ( version_compare( phpversion(), '5.3.2' ) < 0 ) ) { ./maintenance/update.php: $ver = phpversion(); ./load.php:if ( !function_exists( 'version_compare' ) || version_compare( phpversion(), '5.3.2' ) < 0 ) { ./tests/testHelpers.inc: 'tr_php_version' => phpversion(), $:andre\> -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Wikibugs-l mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/wikibugs-l
