Validation.patch
| C:/Documents and Settings// /Validation.fix.php Tue Mar 10 01:15:07 2009 | ||
|---|---|---|
| 108 | 108 |
public function field_names() |
| 109 | 109 |
{
|
| 110 | 110 |
// All the fields that are being validated |
| 111 |
$fields = array_unique(array_merge
|
|
| 111 |
$fields = array_keys(array_merge
|
|
| 112 | 112 |
( |
| 113 |
array_keys($this->pre_filters),
|
|
| 114 |
array_keys($this->rules),
|
|
| 115 |
array_keys($this->callbacks),
|
|
| 116 |
array_keys($this->post_filters)
|
|
| 113 |
$this->pre_filters,
|
|
| 114 |
$this->rules,
|
|
| 115 |
$this->callbacks,
|
|
| 116 |
$this->post_filters
|
|
| 117 | 117 |
)); |
| 118 | 118 |
|
| 119 | 119 |
// Remove wildcard fields |