移除多余的分号
This commit is contained in:
parent
8552975ea2
commit
ee38a91245
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue