summaryrefslogtreecommitdiff
path: root/LibertyAttachable.php
diff options
context:
space:
mode:
Diffstat (limited to 'LibertyAttachable.php')
-rw-r--r--LibertyAttachable.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/LibertyAttachable.php b/LibertyAttachable.php
index 8faf4b9..75abbd7 100644
--- a/LibertyAttachable.php
+++ b/LibertyAttachable.php
@@ -3,7 +3,7 @@
* Management of Liberty Content
*
* @package liberty
- * @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyAttachable.php,v 1.166 2008/10/19 08:14:21 squareing Exp $
+ * @version $Header: /cvsroot/bitweaver/_bit_liberty/LibertyAttachable.php,v 1.167 2008/10/25 01:24:04 wjames5 Exp $
* @author spider <spider@steelsun.com>
*/
// +----------------------------------------------------------------------+
@@ -679,6 +679,11 @@ class LibertyAttachable extends LibertyContent {
$pParamHash['liberty_attachments']['primary'] = NULL;
}
+ // if we have an error we get them all by checking parent classes for additional errors
+ if( count( $this->mErrors ) > 0 ){
+ parent::verify( $pParamHash );
+ }
+
return ( count( $this->mErrors ) == 0 );
}