Changeset 12358 for branches/dev/data/class
- Timestamp:
- 2007/05/09 12:47:41 (19 years ago)
- File:
-
- 1 edited
-
branches/dev/data/class/SC_CustomerList.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/dev/data/class/SC_CustomerList.php
r12357 r12358 202 202 /* if ( $mode == 'magazine' ){ 203 203 if ( strlen($this->arrSql['domain']) > 0 && $this->arrSql['domain'] == 3) { 204 ¡¡¡¡¡¡¡¡¡¡¡¡ $this->setWhere("(email || email_mobile LIKE ?)" );¡¡¡¡ 205 } 204 ¡¡¡¡¡¡¡¡¡¡¡¡ if(DB_TYPE == "pgsql"){ 205 $this->setWhere( "(email || email_mobile LIKE ?)" ); 206 }elseif(DB_TYPE == "mysql"){ 207 $this->setWhere("concat(email,email_mobile) LIKE ?" ); 208 }¡¡¡¡ 206 209 $searchDomainType = $this->addSearchStr($this->arrSql['domain_type']); 207 210 $this->arrVal[] = $searchDomaintype; 211 } 208 212 if ( strlen($this->arrSql['domain']) > 0 && $this->arrSql['domain'] == 2) { 209 $this->setWhere("(email || email_mobile NOT LIKE ?)" ); 213 if(DB_TYPE == "pgsql"){ 214 $this->setWhere( "(email || email_mobile LIKE ?)" ); 215 }elseif(DB_TYPE == "mysql"){ 216 $this->setWhere("concat(email,email_mobile) LIKE ?" ); 210 217 } 211 218 $searchDomainType = $this->addSearchStr($this->arrSql['domain_type']); … … 213 220 } 214 221 */ 222 echo "test"; 223 215 224 //¡¡HTML-mail¡ÊÇÛ¿®Êý¼°) 216 225 if ( $mode == 'magazine' ){
Note: See TracChangeset
for help on using the changeset viewer.
