From ee1f2b3c31e9b187334a013b8acbeed764082d6b Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 29 May 2005 10:45:37 +0000 Subject: [PATCH] fix syntax error introduced in last commit --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index 6924670c0f..7d657ccdb0 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -2175,7 +2175,7 @@ class Parser # Template cache array insertion if( $found ) { $this->mTemplates[$part1] = $text; - $text = $linestart . $text + $text = $linestart . $text; } } } -- 2.20.1