1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

more model errors cleanup

This commit is contained in:
secretr
2009-10-21 11:57:15 +00:00
parent e274b763d7
commit 02c9ede119
2 changed files with 14 additions and 5 deletions

View File

@@ -9,8 +9,8 @@
* e107 Base Model * e107 Base Model
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/model_class.php,v $ * $Source: /cvs_backup/e107_0.8/e107_handlers/model_class.php,v $
* $Revision: 1.13 $ * $Revision: 1.14 $
* $Date: 2009-10-21 10:24:32 $ * $Date: 2009-10-21 11:57:15 $
* $Author: secretr $ * $Author: secretr $
*/ */
@@ -1380,7 +1380,7 @@ class e_model_admin extends e_model
*/ */
public function hasError() public function hasError()
{ {
return (!$this->hasValidationError() && !$this->hasSqlError()); return ($this->hasValidationError() || $this->hasSqlError());
} }
/** /**

View File

@@ -9,8 +9,8 @@
* e107 Preference Handler * e107 Preference Handler
* *
* $Source: /cvs_backup/e107_0.8/e107_handlers/pref_class.php,v $ * $Source: /cvs_backup/e107_0.8/e107_handlers/pref_class.php,v $
* $Revision: 1.24 $ * $Revision: 1.25 $
* $Date: 2009-10-21 08:58:33 $ * $Date: 2009-10-21 11:57:15 $
* $Author: secretr $ * $Author: secretr $
*/ */
@@ -609,6 +609,15 @@ class e_pref extends e_model_admin
return $this; return $this;
} }
/**
* Validation override
* @return
*/
public function validate()
{
return true;
}
/** /**
* Clear preferences cache * Clear preferences cache
* *