Changeset 1498
- Timestamp:
- 06/21/06 12:54:51 (2 years ago)
- Files:
-
- trunk/CHANGELOG (modified) (1 diff)
- trunk/lib/controller/sfController.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CHANGELOG
r1318 r1498 5 5 building you Propel model/sql (XML schema file (PATH/config/schema.xml) does not validate) 6 6 you can add a propel.schema.validate = false at the end of your config/propel.ini file. 7 8 WARNING: Actions in the routing are now case sensitive. If you have a page with an 'index' action name, 9 your action must be named 'executeIndex' ('fooBar' => 'executeFooBar'). 7 10 8 11 * added component and partial cache trunk/lib/controller/sfController.class.php
r1415 r1498 111 111 112 112 // action is defined in this class? 113 $defined = in_array( strtolower('execute'.$controllerName), array_map('strtolower', get_class_methods($moduleName.$classSuffix.'s')));113 $defined = in_array('execute'.ucfirst($controllerName), get_class_methods($moduleName.$classSuffix.'s')); 114 114 if ($defined) 115 115 {