Browse Source

Add explicit saveDelayedErrors() member function

stevetruckstuff 19 years ago
parent
commit
464a61b52b
1 changed files with 21 additions and 0 deletions
  1. 21 0
      class/error.class.php

+ 21 - 0
class/error.class.php

@@ -228,6 +228,27 @@ class ErrorHandler {
         }
     }
 
+    /**
+     * Force the delayed errors to be stored in the session in case 
+     * $this->displayErrors() never gets called, e.g. in compose.php
+     */
+    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");
+                }
+            }
+
+            if (count($this->aErrors) > 0) {
+                sqsession_register($this->aErrors,"delayed_errors");
+            }
+        }
+    }
+    
     /**
      * Display the error array in the error template
      * @return void