From 559e8c9edda74f2ea07df8c6625b3b615c667bd2 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Thu, 3 Aug 2006 18:04:38 +0000 Subject: [PATCH] put the /i modifier back in the namespace grammar thing --- languages/Language.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/Language.php b/languages/Language.php index e733386831..fc893c08be 100644 --- a/languages/Language.php +++ b/languages/Language.php @@ -1466,7 +1466,7 @@ class Language { # Allowing full message-style parsing would make simple requests # such as action=raw much more expensive than they need to be. # This will hopefully cover most cases. - $talk = preg_replace_callback( '/{{grammar:(.*?)\|(.*?)}}/', + $talk = preg_replace_callback( '/{{grammar:(.*?)\|(.*?)}}/i', array( &$this, 'replaceGrammarInNamespace' ), $talk ); $talk = str_replace( ' ', '_', $talk ); $this->namespaceNames[NS_PROJECT_TALK] = $talk; -- 2.20.1