[Solar-svn] Revision 2649
pmjones at solarphp.com
pmjones at solarphp.com
Sun Jul 29 11:36:54 CDT 2007
Branch: Solar_View_Helper_FormElement: [BRK] In keeping with new Solar_Form, element-level messages are now keyed on 'invalid' (vice 'feedback')
Modified: branches/orm/Solar/View/Helper/FormElement.php
===================================================================
--- branches/orm/Solar/View/Helper/FormElement.php 2007-07-29 16:35:46 UTC (rev 2648)
+++ branches/orm/Solar/View/Helper/FormElement.php 2007-07-29 16:36:54 UTC (rev 2649)
@@ -44,7 +44,7 @@
'options' => array(),
'require' => false,
'disable' => false,
- 'feedback' => array(),
+ 'invalid' => array(),
);
/**
@@ -64,7 +64,7 @@
'options',
'require',
'disable',
- 'feedback',
+ 'invalid',
'attribs',
);
@@ -171,7 +171,7 @@
settype($info['options'], 'array');
settype($info['require'], 'bool');
settype($info['disable'], 'bool');
- settype($info['feedback'], 'array');
+ settype($info['invalid'], 'array');
foreach ($this->_keys as $key) {
More information about the Solar-svn
mailing list