Changeset 18610 for branches/comu-ver2


Ignore:
Timestamp:
2010/03/11 15:39:42 (14 years ago)
Author:
Seasoft
Message:

r18590 の実装誤りを修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/comu-ver2/data/class/SC_Query.php

    r18590 r18610  
    311311    // MAX文の実行 
    312312    function max($table, $col, $where = "", $arrval = array()) { 
    313         $ret = $this->get($table, "MAX($col)", $where); 
     313        $ret = $this->get($table, "MAX($col)", $where, $arrval); 
    314314        return $ret; 
    315315    } 
     
    317317    // MIN文の実行 
    318318    function min($table, $col, $where = "", $arrval = array()) { 
    319         $ret = $this->get($table, "MIN($col)", $where); 
     319        $ret = $this->get($table, "MIN($col)", $where, $arrval); 
    320320        return $ret; 
    321321    } 
Note: See TracChangeset for help on using the changeset viewer.