更新附件管理功能

This commit is contained in:
wlx 2014-06-11 06:36:03 +00:00
parent 1a23c89ec2
commit f8105975b1
1 changed files with 4 additions and 8 deletions

View File

@ -532,7 +532,7 @@ class Admin_DataController extends Zend_Controller_Action
$sql = "SELECT cm.*,md.title,(SELECT count(id) as counts FROM comments cms WHERE cms.reply=cm.id AND cms.reply!=0) as reply_count FROM comments cm $sql = "SELECT cm.*,md.title,(SELECT count(id) as counts FROM comments cms WHERE cms.reply=cm.id AND cms.reply!=0) as reply_count FROM comments cm
LEFT JOIN $submd md ON md.uuid=cm.uuid right JOIN $submd md ON md.uuid=cm.uuid
WHERE cm.reply=0 WHERE cm.reply=0
ORDER BY cm.ts_created DESC,cm.id DESC"; ORDER BY cm.ts_created DESC,cm.id DESC";
@ -1186,8 +1186,8 @@ class Admin_DataController extends Zend_Controller_Action
else else
{ {
$submd=$this->view->config->sub->metadata;
$sql="select * from attachments order by id desc"; $sql="select * from attachments where id in (select id from mdattach where uuid in (select uuid from $submd)) order by id desc";
$re= $this->db->query($sql); $re= $this->db->query($sql);
$rows = $re->fetchAll(); $rows = $re->fetchAll();
@ -1197,11 +1197,7 @@ class Admin_DataController extends Zend_Controller_Action
$paginator->setView($this->view); $paginator->setView($this->view);
Zend_View_Helper_PaginationControl::setDefaultViewPartial('pagination.phtml'); Zend_View_Helper_PaginationControl::setDefaultViewPartial('pagination.phtml');
$this->view->paginator=$paginator; $this->view->paginator=$paginator;
}//所有附件 }//所有附件
}//attachments 附件 }//attachments 附件
function uploadAction(){ function uploadAction(){