do not use reference to temporary element

This commit is contained in:
coderkun 2014-06-03 11:02:35 +02:00
commit 8ef116f8ae

View file

@ -142,7 +142,7 @@
{
// Set response
$this->response->clearParams();
foreach($this->request->getParams() as &$param) {
foreach($this->request->getParams() as $param) {
$this->response->addParam($param);
}