From: Aryeh Gregor Date: Fri, 9 Oct 2009 16:27:21 +0000 (+0000) Subject: Fix error message for libxml bug from r54828 X-Git-Tag: 1.31.0-rc.0~39331 X-Git-Url: http://git.cyclocoop.org/data/%24self?a=commitdiff_plain;h=1886c9a5463558cdd79fcdc28778620c11b3f399;p=lhc%2Fweb%2Fwiklou.git Fix error message for libxml bug from r54828 libxml2 2.7.2 is buggy, only 2.7.3 is fixed. Thanks to Rgoodermote on IRC for reporting the problem. --- diff --git a/maintenance/install-utils.inc b/maintenance/install-utils.inc index 234b12c9ec..1de2e67e33 100644 --- a/maintenance/install-utils.inc +++ b/maintenance/install-utils.inc @@ -38,7 +38,7 @@ function install_version_checks() { if( !$test->ok ) { echo "Your system has a combination of PHP and libxml2 versions which is buggy\n" . "and can cause hidden data corruption in MediaWiki and other web apps.\n" . - "Upgrade to PHP 5.2.9 or later and libxml2 2.7.2 or later!\n" . + "Upgrade to PHP 5.2.9 or later and libxml2 2.7.3 or later!\n" . "ABORTING (http://bugs.php.net/bug.php?id=45996 for details).\n"; die( -1 ); } @@ -193,4 +193,4 @@ function mw_have_dl() { && is_callable( 'dl' ) && wfIniGetBool( 'enable_dl' ) && !wfIniGetBool( 'safe_mode' ); -} \ No newline at end of file +}