From: Tim Starling Date: Mon, 20 Mar 2006 08:25:34 +0000 (+0000) Subject: backwards compatibility: keep SkinTemplate::getNameSpaceKey() but as a call to Title... X-Git-Tag: 1.6.0~181 X-Git-Url: http://git.cyclocoop.org/data/Luca_Pacioli_%28Gemaelde%29.jpeg?a=commitdiff_plain;h=f629aead168d87899bbcc4369fc0c9c00dcc5952;p=lhc%2Fweb%2Fwiklou.git backwards compatibility: keep SkinTemplate::getNameSpaceKey() but as a call to Title::getNamespaceKey() --- diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index 54a19e68fe..a048fd5e4d 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -858,6 +858,15 @@ class SkinTemplate extends Skin { return $nav_urls; } + /** + * Generate strings used for xml 'id' names + * @return string + * @access private + */ + function getNameSpaceKey () { + return $this->mTitle->getNamespaceKey(); + } + /** * @access private */