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/helper/SC_Helper_Plugin.php

    r20484 r20507  
    3636    function load(&$lcpage){ 
    3737        //データベースからクラス名を読み込む 
    38         $objQuery = new SC_Query(); 
     38        $objQuery = new SC_Query_Ex(); 
    3939        $col = "*"; 
    4040        $table = "dtb_plugin"; 
     
    9292     */ 
    9393    function getEnablePlugin(){ 
    94         $objQuery = new SC_Query(); 
     94        $objQuery = new SC_Query_Ex(); 
    9595        $col = '*'; 
    9696        $table = 'dtb_plugin'; 
     
    104104     */ 
    105105    function getAllPlugin(){ 
    106         $objQuery = new SC_Query(); 
     106        $objQuery = new SC_Query_Ex(); 
    107107        $col = '*'; 
    108108        $table = 'dtb_plugin'; 
Note: See TracChangeset for help on using the changeset viewer.