From f629aead168d87899bbcc4369fc0c9c00dcc5952 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Mon, 20 Mar 2006 08:25:34 +0000 Subject: [PATCH] backwards compatibility: keep SkinTemplate::getNameSpaceKey() but as a call to Title::getNamespaceKey() --- includes/SkinTemplate.php | 9 +++++++++ 1 file changed, 9 insertions(+) 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 */ -- 2.20.1