Changeset 2750 for branches/0.11
- Timestamp:
- 08/31/08 16:25:14 (4 months ago)
- Location:
- branches/0.11
- Files:
-
- 2 modified
-
CHANGELOG (modified) (1 diff)
-
src/validator/AgaviEqualsValidator.class.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/CHANGELOG
r2741 r2750 19 19 CHG: Dump "xhtml" output type from sample app and introduce a replacement (#802) (David) 20 20 21 FIX: AgaviEqualsValidator's docs do not match the actual validation process (#833) (Dominik) 21 22 FIX: Invalid argument name in AgaviValidationManager::hasError() (#832) (David) 22 23 FIX: The gettext translator doesn't interpret the plural forms like the original gettext implementation (#821) (Dominik) -
branches/0.11/src/validator/AgaviEqualsValidator.class.php
r2258 r2750 24 24 * Parameters: 25 25 * 'value' value which the input should equals to 26 * 'asparam' whether the 'value' should be treated as a parameter name 26 27 * 27 28 * @package agavi … … 52 53 if($this->hasParameter('value')) { 53 54 $value = $this->getParameter('value'); 55 if($this->getParameter('asparam', false)) { 56 $value = $this->getData($value); 57 } 54 58 } else { 55 59 $value = $this->getData($this->getArgument());

