Changeset 2912

Show
Ignore:
Timestamp:
09/19/08 18:49:42 (4 months ago)
Author:
david
Message:

merge [2906:2911/branches/0.11]

Location:
branches/1.0
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/1.0/CHANGELOG

    r2906 r2912  
    7171 
    7272 
    73 0.11.3 RC3 (September ??, 2008) 
     730.11.4 RC1 (September ??, 2008) 
    7474------------------------------- 
     75 
     76FIX: Sample app SearchEngineSpamAction works with invalid product names (#861) (David) 
     77 
     78 
     790.11.3 (September 19, 2008) 
     80--------------------------- 
    7581 
    7682CHG: Update zoneinfo database to 2008f (#860) (David) 
  • branches/1.0/RELEASE_NOTES

    r2876 r2912  
    7979 
    8080 
    81 Version 0.11.3 - September ??, 2008 
     81Version 0.11.4 - September ??, 2008 
     82=================================== 
     83 
     84 
     85Version 0.11.3 - September 19, 2008 
    8286=================================== 
    8387 
     
    9195- FPF has the option to ignore errors during document parsing and skip population (good for production environments) 
    9296- Assigning of "inner" content to $slots template array can be disabled 
     97 
     98The 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. 
    9399 
    94100A full list of changes can be found in the CHANGELOG file. 
  • branches/1.0/samples/app/modules/Default/actions/SearchEngineSpamAction.class.php

    r2904 r2912  
    99     
    1010    // was the name in the url? then validate that, too 
    11     if($rd->hasParameter('product_name')) { 
     11    if($rd->hasParameter('name')) { 
    1212      $name = $rd->getParameter('name'); 
    1313      $price = $pfm->getPriceByProductInfo($id, $name);