From: Bartosz DziewoƄski Date: Mon, 11 Nov 2013 21:18:04 +0000 (+0100) Subject: DatabaseBase: Fix version number in deprecation notice X-Git-Tag: 1.31.0-rc.0~18187^2 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=fe4f65689d33c1f7da0930f8cde7cffebbb8e1b4;p=lhc%2Fweb%2Fwiklou.git DatabaseBase: Fix version number in deprecation notice Followup to I09418558. Change-Id: Iebdaf5a6678c4c2611d91b5c2678e89d36bccb20 --- 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;