New helper function for checking plugin version numbers check_plugin_version()
[squirrelmail.git] / class / error.class.php
index df401de682311a46e07cec61197365dcf49c02d1..57ca84bf719382b166dca53fa6322f35ae069f34 100644 (file)
@@ -244,7 +244,11 @@ class ErrorHandler {
         }
 
         if (isset($this->Template->values['aErrors']) && count($this->Template->values['aErrors']) > 0) {
-            $this->aErrors = array_merge($this->aErrors, $this->Template->values['aErrors']);
+            foreach ($this->Template->values['aErrors'] as $err) {
+                if (!in_array($err, $this->aErrors, true)) {
+                    $this->aErrors[] = $err;
+                }
+            }
             $this->Template->assign('aErrors',$this->aErrors);
         }