From ab121e365f65edcc323270c02733ef39c68a8299 Mon Sep 17 00:00:00 2001 From: Roan Kattouw Date: Wed, 16 Dec 2009 12:02:41 +0000 Subject: [PATCH] Readd case statement for {{STYLEPATH}} that was accidentally removed in r57283 --- includes/parser/Parser.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/includes/parser/Parser.php b/includes/parser/Parser.php index c6cd361310..883778302f 100644 --- a/includes/parser/Parser.php +++ b/includes/parser/Parser.php @@ -2577,6 +2577,8 @@ class Parser return $wgServerName; case 'scriptpath': return $wgScriptPath; + case 'stylepath': + return $wgStylePath; case 'directionmark': return $wgContLang->getDirMark(); case 'contentlanguage': -- 2.20.1