From 0bcbd5c1714d4435b50347c7e34e5f9238b301f5 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 30 Apr 2006 03:46:39 +0000 Subject: [PATCH] Remove big loud PHP warning if allow_call_time_pass_reference is off. Please test all code with allow_call_time_pass_reference *off*. Thanks. --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index 83ee8ecc71..c331144591 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -3459,7 +3459,7 @@ class Parser $text = $this->replaceVariables( $text ); # Strip out etc. added via replaceVariables - $text = $this->strip( $text, &$stripState ); + $text = $this->strip( $text, $stripState ); # Signatures $sigText = $this->getUserSig( $user ); -- 2.20.1