Ignore:
Timestamp:
2008/11/07 17:15:15 (15 years ago)
Author:
takegami
Message:

#393 改修
2.3.2

Location:
branches/version-2/data/class
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2/data/class/SC_Initial.php

    r17681 r17698  
    3838 
    3939        /** EC-CUBEのバージョン */ 
    40         define('ECCUBE_VERSION', "2.3.1"); 
     40        define('ECCUBE_VERSION', "2.3.2"); 
    4141    } 
    4242 
  • branches/version-2/data/class/pages/products/LC_Page_Products_DetailImage.php

    r16582 r17698  
    7373 
    7474        $objQuery = new SC_Query(); 
     75         // カラムが存在していなければエラー画面を表示 
     76        if(!$objDb->sfColumnExists("dtb_products",$image_key)){ 
     77            SC_Utils_Ex::sfDispSiteError(PRODUCT_NOT_FOUND); 
     78        } 
    7579        $col = "name, $image_key"; 
     80         
    7681        $arrRet = $objQuery->select($col, "dtb_products", "product_id = ?", array($_GET['product_id'])); 
    7782        $image_path = IMAGE_SAVE_DIR . $arrRet[0][$image_key]; 
Note: See TracChangeset for help on using the changeset viewer.