From c758d7868eee8990832ef382d2f09235720c443c Mon Sep 17 00:00:00 2001 From: stevetruckstuff Date: Mon, 18 Sep 2006 14:38:46 +0000 Subject: [PATCH] Fix unreachable code git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@11712 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- class/error.class.php | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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) { -- 2.25.1