移除多余的分号

This commit is contained in:
wlx 2016-03-21 21:36:13 +08:00
parent 8552975ea2
commit ee38a91245
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->viewRenderer->setNoRender();
header("Content-Type: application/json; charset=utf-8");
echo json_encode($rows);;
echo json_encode($rows);
}
function latestAction()
@ -64,7 +64,7 @@ class SearchController extends Zend_Controller_Action
$this->_helper->layout->disableLayout();
$this->_helper->viewRenderer->setNoRender();
header("Content-Type: application/json; charset=utf-8");
echo json_encode($rows);;
echo json_encode($rows);
}
function advanceAction()