Changeset 2070
- Timestamp:
- 02/16/2008 11:56:26 PM (8 months ago)
- Files:
-
- 1 modified
-
trunk/system/libraries/Validation.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/libraries/Validation.php
r2069 r2070 129 129 { 130 130 // Handle "any field" filters 131 $fields = $this->any_field;131 $fields = array($this->any_field); 132 132 } 133 133 else … … 165 165 { 166 166 // Handle "any field" filters 167 $fields = $this->any_field;167 $fields = array($this->any_field); 168 168 } 169 169 else … … 213 213 $rule = $matches[1]; 214 214 $args = preg_split('/(?<!\\\\),\s*/', $matches[2]); 215 216 // Replace escaped comma with comma 217 $args = str_replace('\,', ',', $args); 215 218 } 216 219
