Ticket #759: sfCategory_Count.patch

File sfCategory_Count.patch, 515 bytes (added by nanasess, 14 years ago)
  • data/class/helper/SC_Helper_DB.php

    === modified file 'data/class/helper/SC_Helper_DB.php'
     
    937937     * @return void 
    938938     */ 
    939939    function sfCategory_Count($objQuery){ 
     940        $objQuery->begin(); 
    940941        $sql = ""; 
    941942 
    942943        //テーブル内容の削除 
     
    970971 
    971972            $objQuery->query($sql, array($val['category_id'])); 
    972973        } 
     974        $objQuery->commit(); 
    973975    } 
    974976 
    975977    /**