Ignore:
Timestamp:
2012/01/06 19:54:03 (12 years ago)
Author:
kotani
Message:

Merge from version-2_11-dev

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/shopping/LC_Page_Shopping.php

    r21295 r21390  
    537537        $objQuery =& SC_Query_Ex::getSingletonInstance(); 
    538538        $where = "email = ? AND status = 1 AND del_flg = 0"; 
    539         $count = $objQuery->count("dtb_customer", $where, array($login_email)); 
    540         return $count > 0; 
     539        $exists = $objQuery->exists("dtb_customer", $where, array($login_email)); 
     540        return $exists; 
    541541    } 
    542542 
Note: See TracChangeset for help on using the changeset viewer.