From 61b3739b78c0697eaa74b4b1419037a81b12ef55 Mon Sep 17 00:00:00 2001
From: Baris Metin <bmetin@verivue.com>
Date: Wed, 4 May 2011 17:24:44 -0400
Subject: [PATCH] fix ;

---
 php/plc_api.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/php/plc_api.php b/php/plc_api.php
index f704cd43..32246011 100644
--- a/php/plc_api.php
+++ b/php/plc_api.php
@@ -77,7 +77,7 @@ class PLCAPI
     $error_line='PLCAPI error:  ' . $error_msg ;
     if ($file) $error_line .= ' in file ' . $file;
     if ($line) $error_line .= ' on line ' . $line;
-    $this->errors[] = $error_line
+    $this->errors[] = $error_line;
     # TODO: setup a config variable for more detailed stack traces, for API errors.
     if ( TRUE ){
       error_log($error_line);
-- 
2.47.0