class/dao/userdata/lifetypeuserdataprovider.class.php 中的两个方法:
function getNumUsers
function getAllUsers
有这么一段:
if( $status != USER_STATUS_ALL )
$where = "status = '".Db::qstr($status)."'";
if( $searchTerms != "" ) {
if( $where != "" )
$where .= " AND ";
$where = $this->getSearchConditions( $searchTerms );
}
不知道最后一个
$where =
是否应该写为:
$where .=