Changeset 2912
- Timestamp:
- 09/19/08 18:49:42 (4 months ago)
- Location:
- branches/1.0
- Files:
-
- 3 modified
-
CHANGELOG (modified) (1 diff)
-
RELEASE_NOTES (modified) (2 diffs)
-
samples/app/modules/Default/actions/SearchEngineSpamAction.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.0/CHANGELOG
r2906 r2912 71 71 72 72 73 0.11. 3 RC3(September ??, 2008)73 0.11.4 RC1 (September ??, 2008) 74 74 ------------------------------- 75 76 FIX: Sample app SearchEngineSpamAction works with invalid product names (#861) (David) 77 78 79 0.11.3 (September 19, 2008) 80 --------------------------- 75 81 76 82 CHG: Update zoneinfo database to 2008f (#860) (David) -
branches/1.0/RELEASE_NOTES
r2876 r2912 79 79 80 80 81 Version 0.11.3 - September ??, 2008 81 Version 0.11.4 - September ??, 2008 82 =================================== 83 84 85 Version 0.11.3 - September 19, 2008 82 86 =================================== 83 87 … … 91 95 - FPF has the option to ignore errors during document parsing and skip population (good for production environments) 92 96 - Assigning of "inner" content to $slots template array can be disabled 97 98 The sample app's SearchEngineSpamAction and the associated elements (PriceFinderModel etc) have been updated to work as the routing pattern always suggested - identify the product by ID, and allow an optional part including the name of the product. This also shows off some more Agavi features now. 93 99 94 100 A full list of changes can be found in the CHANGELOG file. -
branches/1.0/samples/app/modules/Default/actions/SearchEngineSpamAction.class.php
r2904 r2912 9 9 10 10 // was the name in the url? then validate that, too 11 if($rd->hasParameter(' product_name')) {11 if($rd->hasParameter('name')) { 12 12 $name = $rd->getParameter('name'); 13 13 $price = $pfm->getPriceByProductInfo($id, $name);

