Ignore:
Timestamp:
2011/03/04 23:24:33 (13 years ago)
Author:
shutta
Message:

SC_Queryクラスのclass_extends対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/basis/LC_Page_Admin_Basis_ZipInstall.php

    r20501 r20507  
    138138 
    139139    function lfAutoCommitZip() { 
    140         $objQuery =& SC_Query::getSingletonInstance(); 
     140        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    141141 
    142142        $objQuery->begin(); 
     
    147147 
    148148    function lfDeleteZip() { 
    149         $objQuery =& SC_Query::getSingletonInstance(); 
     149        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    150150 
    151151        $objQuery->delete('mtb_zip'); 
     
    169169     */ 
    170170    function insertMtbZip($start = 1) { 
    171         $objQuery =& SC_Query::getSingletonInstance(); 
     171        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    172172 
    173173        $img_path = USER_URL . USER_PACKAGE_DIR . "/" . ADMIN_DIR . "img/basis/"; 
     
    302302 
    303303    function countMtbZip() { 
    304         $objQuery =& SC_Query::getSingletonInstance(); 
     304        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    305305        return $objQuery->count('mtb_zip'); 
    306306    } 
Note: See TracChangeset for help on using the changeset viewer.