Bump MySQL version to 5.0.2 after r104047
authorSam Reed <reedy@users.mediawiki.org>
Mon, 28 Nov 2011 15:19:20 +0000 (15:19 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Mon, 28 Nov 2011 15:19:20 +0000 (15:19 +0000)
Documentation

RELEASE-NOTES-1.19
includes/GlobalFunctions.php

index 3926365..265617b 100644 (file)
@@ -222,7 +222,7 @@ DB2 and Microsoft SQL Server.
 
 The supported versions are:
 
-* MySQL 4.0 or later
+* MySQL 5.0.2 or later
 * PostgreSQL 8.3 or later
 * SQLite 3
 * Oracle 9.0.1 or later
index 5a9202e..52577cc 100644 (file)
@@ -81,6 +81,9 @@ if ( !function_exists( 'istainted' ) ) {
 
 /**
  * Like array_diff( $a, $b ) except that it works with two-dimensional arrays.
+ * @param $a array
+ * @param $b array
+ * @return array
  */
 function wfArrayDiff2( $a, $b ) {
        return array_udiff( $a, $b, 'wfArrayDiff2_cmp' );