修改了一处逻辑问题

This commit is contained in:
Li Jianxuan 2011-10-11 01:33:06 +00:00
parent e44e61b751
commit ea41e350f2
1 changed files with 4 additions and 3 deletions

View File

@ -183,7 +183,7 @@ class Admin_ReviewController extends Zend_Controller_Action
{
$sql = "select m.id,md.title,m.status from mdstatus m
left join metadata md on md.uuid=m.uuid
where m.status in (3,4)";
where m.status in (2,3,4)";
$rs = $this->db->query($sql);
$rows = $rs->fetchAll();
@ -235,7 +235,7 @@ class Admin_ReviewController extends Zend_Controller_Action
foreach ($exps as $v)
{
$sql = "select m.id,u.realname,u.email from mdexpertreview m
$sql = "select m.id,u.realname,m.uuid,u.email from mdexpertreview m
left join users u on m.id=u.id
where m.uuid='$uuid' and m.id='$v'";
$rs = $this->db->query($sql);
@ -248,9 +248,10 @@ class Admin_ReviewController extends Zend_Controller_Action
{
$sql = "insert into mdexpertreview (id,uuid) values ('$v','$uuid')";
$update = "update mdstatus set status=2 where uuid='$uuid'";
try{
if($this->db->exec($sql)>0)
if($this->db->exec($sql)>0 && $this->db->exec($update))
{
$subject = "西部数据中心";
$email = "la5c@qq.com";