From b0da00749cdc37e440edd4fd0e5a207583e1ca8d Mon Sep 17 00:00:00 2001 From: Raimond Spekking Date: Thu, 20 May 2010 19:02:45 +0000 Subject: [PATCH] Follow-up r66698: Fix syntax error (missing ;) --- includes/User.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/User.php b/includes/User.php index 98af4ca2cf..364503b1ed 100644 --- a/includes/User.php +++ b/includes/User.php @@ -3765,7 +3765,7 @@ class User { if ( !$template || $template->getNamespace() !== NS_TEMPLATE || !$template->exists() ) { - $text = "== $subject ==\n\n$text\n\n-- $signature" + $text = "== $subject ==\n\n$text\n\n-- $signature"; } else { $text = '{{'. $template->getText() . " | subject=$subject | body=$text | signature=$signature }}"; -- 2.20.1