Changeset 12518 for branches/dev/data


Ignore:
Timestamp:
2007/05/10 20:16:23 (19 years ago)
Author:
matsumoto
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/class/SC_SelectSql.php

    r12464 r12518  
    196196        } 
    197197    } 
     198     
     199    function setWhereOR($where){ 
     200        if ($where != "") {      
     201            if( $this->where ) { 
     202     
     203                $this->where .= " OR " . $where; 
     204     
     205            } else { 
     206     
     207                $this->where = "WHERE " . $where; 
     208            } 
     209        } 
     210    } 
    198211 
    199212    function setOrder($order){ 
Note: See TracChangeset for help on using the changeset viewer.