Ignore:
Timestamp:
2012/04/16 19:53:39 (12 years ago)
Author:
shutta
Message:

#1579 SC_Query::getSingletonInstance()への置き換え

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/plugin/SC_Plugin_Util.php

    r21728 r21750  
    2929     */ 
    3030    function getEnablePlugin() { 
    31         $objQuery = new SC_Query_Ex(); 
     31        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    3232        $col = '*'; 
    3333        $table = 'dtb_plugin'; 
     
    4848     */ 
    4949    function getAllPlugin() { 
    50         $objQuery = new SC_Query_Ex(); 
     50        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    5151        $col = '*'; 
    5252        $table = 'dtb_plugin'; 
Note: See TracChangeset for help on using the changeset viewer.