Missing $this->
authorRob Church <robchurch@users.mediawiki.org>
Fri, 23 Jun 2006 21:54:31 +0000 (21:54 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Fri, 23 Jun 2006 21:54:31 +0000 (21:54 +0000)
includes/Parser.php

index ada0a5f..530ff8b 100644 (file)
@@ -3779,7 +3779,7 @@ class Parser
                $substText = '{{' . $substWord->getSynonym( 0 );
 
                $text = preg_replace( $substRegex, $substText, $text );
-               $text = cleanSigInSig( $text );
+               $text = $this->cleanSigInSig( $text );
                $text = $this->replaceVariables( $text );
                
                $this->clearState();