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