Changeset 3155
- Timestamp:
- 05/06/08 15:22:11 (2 months ago)
- Files:
-
- trunk/Solar/Filter.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Solar/Filter.php
r3153 r3155 47 47 * 48 48 */ 49 protected $_chain_filters ;49 protected $_chain_filters = array(); 50 50 51 51 /** … … 57 57 * 58 58 */ 59 protected $_chain_invalid ;59 protected $_chain_invalid = array(); 60 60 61 61 /** … … 82 82 * 83 83 */ 84 protected $_chain_require ;84 protected $_chain_require = array(); 85 85 86 86 /** … … 540 540 541 541 // see if we actually have all the required data keys 542 foreach ( $this->_chain_require as $key => $flag) {542 foreach ((array) $this->_chain_require as $key => $flag) { 543 543 544 544 if (! $flag) {
