diff --git a/application/default/controllers/ArchivesController.php b/application/default/controllers/ArchivesController.php index 6b8241c4..5b08f44c 100644 --- a/application/default/controllers/ArchivesController.php +++ b/application/default/controllers/ArchivesController.php @@ -205,9 +205,8 @@ class ArchivesController extends Zend_Controller_Action LEFT JOIN metadata md ON ct.uuid=md.uuid WHERE ct.aid=$archive"; $sth = $this->db->query($sql); - $mdinfo = $sth->fetchAll(); + $this->view->mdinfo = $sth->fetchAll(); } - $this->view->mdinfo = $mdinfo; }