LifeType 中文開發論壇

開發 => 核心補強 => 主題作者是: maomaode 於 十一月 19, 2006, 06:29:44 下午



主題: lifetypeuserdataprovider.class.php 的一个潜在的bug
作者: maomaode十一月 19, 2006, 06:29:44 下午
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 .=


主題: Re: lifetypeuserdataprovider.class.php 的一个潜在的bug
作者: panying四月 07, 2007, 12:57:59 上午
在我的vbb user provideer里面是这么写的

引用
           if ($searchTerms != "")
           {
             if ($where != "")
               $where = $where." AND ".$this->getSearchConditions($searchTerms);
             else
               $where = $this->getSearchConditions($searchTerms);
           }

当时好像我确实认为这个是bug,但是忘记回报了


主題: Re: lifetypeuserdataprovider.class.php 的一个潜在的bug
作者: markwu四月 07, 2007, 01:22:04 上午
那就去 bugs.lifetype.net 回報一下吧! :D

我會馬上把他加上去的。

Mark