Ignore:
Timestamp:
2012/02/08 19:48:01 (14 years ago)
Author:
h_yoshimoto
Message:

#1603 #1632 comu-ml:262にて頂いた箇所の修正、不要ディレクトリの削除

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/helper/SC_Helper_Plugin.php

    r21455 r21458  
    163163            $objQuery->setOrder('rank ASC'); 
    164164        } 
    165         $arrRet = $objQuery->select($col, $table, $where, array($plugin_id)); 
    166         return $arrRet[0]; 
     165        $plugin = $objQuery->getRow($col, $table, $where, array($plugin_id)); 
     166        return $plugin; 
    167167    } 
    168168     
     
    183183            $objQuery->setOrder('rank ASC'); 
    184184        } 
    185         $arrRet = $objQuery->select($col, $table, $where, array($plugin_code)); 
    186         return $arrRet[0]; 
     185        $plugin = $objQuery->getRow($col, $table, $where, array($plugin_code)); 
     186        return $plugin; 
    187187    } 
    188188 
Note: See TracChangeset for help on using the changeset viewer.