From: stevetruckstuff Date: Mon, 18 Sep 2006 14:38:46 +0000 (+0000) Subject: Fix unreachable code X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=c758d7868eee8990832ef382d2f09235720c443c;p=squirrelmail.git Fix unreachable code git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11712 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- diff --git a/class/error.class.php b/class/error.class.php index 23a32d8c..3c13df7b 100644 --- a/class/error.class.php +++ b/class/error.class.php @@ -235,12 +235,10 @@ class ErrorHandler { function saveDelayedErrors () { if($this->delayed_errors) { // Check for previous delayed errors... - if (!$this->delayed_errors) { - sqgetGlobalVar('delayed_errors', $delayed_errors, SQ_SESSION); - if (is_array($delayed_errors)) { - $this->AssignDelayedErrors($delayed_errors); - sqsession_unregister("delayed_errors"); - } + sqgetGlobalVar('delayed_errors', $delayed_errors, SQ_SESSION); + if (is_array($delayed_errors)) { + $this->AssignDelayedErrors($delayed_errors); + sqsession_unregister("delayed_errors"); } if (count($this->aErrors) > 0) {