From f6d65e533c62f6deb21342d4901ece24497b433e Mon Sep 17 00:00:00 2001 From: Pierre Schmitz Date: Thu, 4 Jun 2015 07:31:04 +0200 Subject: Update to MediaWiki 1.25.1 --- includes/config/GlobalVarConfig.php | 21 --------------------- 1 file changed, 21 deletions(-) (limited to 'includes/config/GlobalVarConfig.php') diff --git a/includes/config/GlobalVarConfig.php b/includes/config/GlobalVarConfig.php index 39d6e8e1..589f7d35 100644 --- a/includes/config/GlobalVarConfig.php +++ b/includes/config/GlobalVarConfig.php @@ -62,15 +62,6 @@ class GlobalVarConfig implements Config { return $this->hasWithPrefix( $this->prefix, $name ); } - /** - * @see MutableConfig::set - * @deprecated since 1.24 - */ - public function set( $name, $value ) { - wfDeprecated( __METHOD__, '1.24' ); - $this->setWithPrefix( $this->prefix, $name, $value ); - } - /** * Get a variable with a given prefix, if not the defaults. * @@ -93,16 +84,4 @@ class GlobalVarConfig implements Config { $var = $prefix . $name; return array_key_exists( $var, $GLOBALS ); } - - /** - * Get a variable with a given prefix, if not the defaults. - * - * @param string $prefix Prefix to use on the variable - * @param string $name Variable name without prefix - * @param mixed $value Value to set - * @deprecated since 1.24 - */ - protected function setWithPrefix( $prefix, $name, $value ) { - $GLOBALS[$prefix . $name] = $value; - } } -- cgit v1.2.3-54-g00ecf