From d7ac5a1aa99f9f1ffb332ca09d6f5460b13c2e08 Mon Sep 17 00:00:00 2001 From: Robert Sesek Date: Fri, 10 Jun 2005 18:16:00 +0000 Subject: [PATCH] r264: Fixed three parse errors that we probably would have missed otherwise. --- includes/class_message_reporter.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/includes/class_message_reporter.php b/includes/class_message_reporter.php index 9ed1be4..b4efc93 100755 --- a/includes/class_message_reporter.php +++ b/includes/class_message_reporter.php @@ -29,7 +29,7 @@ class Message_Reporter if (empty($this->process)) { - $this->process = lang::p($this->phrase);; + $this->process = lang::p($this->phrase); } $this->process = (($text) ? $text : $this->process); @@ -72,7 +72,7 @@ class Message_Reporter if (empty($this->process)) { - $this->process = lang::p($this->phrase);; + $this->process = lang::p($this->phrase); } $this->process = (($text) ? $text : $this->process); @@ -102,7 +102,7 @@ class Message_Reporter if (empty($this->process)) { - $this->process = lang::p($this->phrase);; + $this->process = lang::p($this->phrase); } $this->process = (($text) ? $text : $this->process); -- 2.22.5