Changeset 2123
- Timestamp:
- 02/21/08 20:53:01 (5 months ago)
- Files:
-
- trunk/modules/forge/i18n/en_US/forge.php (modified) (1 diff)
- trunk/modules/forge/libraries/Forge.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/modules/forge/i18n/en_US/forge.php
r1923 r2123 3 3 $lang = array 4 4 ( 5 ' invalid_input' => 'Invalid input type requested: %s',5 'unknown_input' => 'Unable to find a Forge input class for: %s', 6 6 ); trunk/modules/forge/libraries/Forge.php
r2120 r2123 99 99 100 100 if ( ! ($input instanceof Form_Input) AND ! ($input instanceof Forge)) 101 throw new Kohana_Exception('forge. invalid_input', get_class($input));101 throw new Kohana_Exception('forge.unknown_input', get_class($input)); 102 102 103 103 $input->method = $this->attr['method'];
