From fe4f65689d33c1f7da0930f8cde7cffebbb8e1b4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bartosz=20Dziewo=C5=84ski?= Date: Mon, 11 Nov 2013 22:18:04 +0100 Subject: [PATCH] DatabaseBase: Fix version number in deprecation notice Followup to I09418558. Change-Id: Iebdaf5a6678c4c2611d91b5c2678e89d36bccb20 --- includes/db/Database.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/db/Database.php b/includes/db/Database.php index 30e92e582a..d519efb785 100644 --- a/includes/db/Database.php +++ b/includes/db/Database.php @@ -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; -- 2.20.1