[Phpcms-plugins-cvs] admin4phpCMS/modules/error class.module_error.php,1.4,1.5
Brought to you by:
mjahn
From: Martin J. <mj...@us...> - 2004-09-29 20:10:54
|
Update of /cvsroot/phpcms-plugins/admin4phpCMS/modules/error In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19438/modules/error Modified Files: class.module_error.php Log Message: completed phpCMS-config-part began the statistic part Index: class.module_error.php =================================================================== RCS file: /cvsroot/phpcms-plugins/admin4phpCMS/modules/error/class.module_error.php,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- class.module_error.php 18 Jun 2004 15:17:00 -0000 1.4 +++ class.module_error.php 29 Sep 2004 20:10:44 -0000 1.5 @@ -28,6 +28,10 @@ /* * $Log$ +* Revision 1.5 2004/09/29 20:10:44 mjahn +* completed phpCMS-config-part +* began the statistic part +* * Revision 1.4 2004/06/18 15:17:00 mjahn * module filemanager and editor included * @@ -55,10 +59,12 @@ function errorAbort (&$actiondata) { $this->_error [] = $actiondata; + return true; } function errorNotice (&$actiondata) { $this->_error [] = $actiondata; + return true; } function displayError (&$actiondata) { @@ -75,8 +81,8 @@ $content .= $this->_error[$i]['errortext'].'<br />'; } - $errordata = array ('_root'=>$root, '_id'=>'errormessage', '_type'=>'paragraph', 'id'=>'', 'class'=>'error', 'content'=>$content); - $this->_callEvent ('LAYOUT_ADD_ELEMENT', $errordata); + $errordata1 = array ('_root'=>$root, '_id'=>'errormessage', '_type'=>'paragraph', 'content'=>$content); + $this->_callEvent ('LAYOUT_ADD_ELEMENT', $errordata1); } } |