浏览代码

Add explicit saveDelayedErrors() member function

stevetruckstuff 19 年之前
父节点
当前提交
464a61b52b
共有 1 个文件被更改,包括 21 次插入0 次删除
  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