From 7b03a38d4d8c8db0025b404bb85214c1abacb78f Mon Sep 17 00:00:00 2001 From: Chad Horohoe Date: Sat, 21 May 2011 17:20:12 +0000 Subject: [PATCH] wfDeprecated() plus doc update --- includes/GlobalFunctions.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/GlobalFunctions.php b/includes/GlobalFunctions.php index c7c6fb240b..d20aa5e63b 100644 --- a/includes/GlobalFunctions.php +++ b/includes/GlobalFunctions.php @@ -2910,9 +2910,10 @@ function wfBaseConvert( $input, $sourceBase, $destBase, $pad = 1, $lowercase = t * * @param $name String * @param $p Array: parameters - * @deprecated since 1.18 + * @deprecated since 1.18, warnings in 1.19, removal in 1.20 */ function wfCreateObject( $name, $p ) { + wfDeprecated( __FUNCTION__ ); return MWFunction::newObj( $name, $p ); } -- 2.20.1