Index: trunk/extensions/Validator/RELEASE-NOTES |
— | — | @@ -4,8 +4,9 @@ |
5 | 5 | This change log contains a list of completed to-do's (new features, bug fixes, refactoring) for every version of Validator. |
6 | 6 | |
7 | 7 | === Validator 0.4.14 === |
| 8 | +(trunk) |
8 | 9 | |
9 | | -* New built-in parameter type 'Title'. Accepts existing and non-existing page titles which are valid within the wiki. |
| 10 | +* New built-in parameter type 'title'. Accepts existing and non-existing page titles which are valid within the wiki. |
10 | 11 | |
11 | 12 | === Validator 0.4.13 === |
12 | 13 | (2011-11-30) |
Index: trunk/extensions/Validator/includes/Parameter.php |
— | — | @@ -19,7 +19,7 @@ |
20 | 20 | const TYPE_FLOAT = 'float'; |
21 | 21 | const TYPE_BOOLEAN = 'boolean'; |
22 | 22 | const TYPE_CHAR = 'char'; |
23 | | - const TYPE_TITLE = 'Title'; // since 0.4.14 |
| 23 | + const TYPE_TITLE = 'title'; // since 0.4.14 |
24 | 24 | |
25 | 25 | /** |
26 | 26 | * Indicates whether parameters that are provided more then once should be accepted, |