移除多余的分号

This commit is contained in:
wlx 2016-03-21 21:36:13 +08:00
parent a7b2365317
commit 504c0834a8
1 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ class SearchController extends Zend_Controller_Action
$this->_helper->layout->disableLayout(); $this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender(); $this->_helper->viewRenderer->setNoRender();
header("Content-Type: application/json; charset=utf-8"); header("Content-Type: application/json; charset=utf-8");
echo json_encode($rows);; echo json_encode($rows);
} }
function latestAction() function latestAction()
@ -64,7 +64,7 @@ class SearchController extends Zend_Controller_Action
$this->_helper->layout->disableLayout(); $this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender(); $this->_helper->viewRenderer->setNoRender();
header("Content-Type: application/json; charset=utf-8"); header("Content-Type: application/json; charset=utf-8");
echo json_encode($rows);; echo json_encode($rows);
} }
function advanceAction() function advanceAction()