DatabaseBase: Fix version number in deprecation notice
authorBartosz Dziewoński <matma.rex@gmail.com>
Mon, 11 Nov 2013 21:18:04 +0000 (22:18 +0100)
committerBartosz Dziewoński <matma.rex@gmail.com>
Mon, 11 Nov 2013 21:18:04 +0000 (22:18 +0100)
Followup to I09418558.

Change-Id: Iebdaf5a6678c4c2611d91b5c2678e89d36bccb20

includes/db/Database.php

index 30e92e5..d519efb 100644 (file)
@@ -706,7 +706,7 @@ abstract class DatabaseBase implements IDatabase, DatabaseType {
                        $tablePrefix = $params['tablePrefix'];
                        $foreign = $params['foreign'];
                } else { // legacy calling pattern
-                       wfDeprecated( __METHOD__ . " method called without parameter array.", "1.22" );
+                       wfDeprecated( __METHOD__ . " method called without parameter array.", "1.23" );
                        $args = func_get_args();
                        $server = isset( $args[0] ) ? $args[0] : false;
                        $user = isset( $args[1] ) ? $args[1] : false;