Skip to content

Commit

Permalink
Fixed issue #11996: Possible remote code execution
Browse files Browse the repository at this point in the history
  • Loading branch information
LouisGac authored and c-schmitz committed Dec 9, 2016
1 parent f43b483 commit 2951e43
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions application/core/LSYii_Controller.php
Expand Up @@ -170,4 +170,13 @@ public function createAbsoluteUrl($route,$params=array(),$schema='',$ampersand='
else
return parent::createAbsoluteUrl($route,$params,$schema,$ampersand);
}

/**
* Loads page states from a hidden input.
* @return array the loaded page states
*/
protected function loadPageStates()
{
return array();
}
}

0 comments on commit 2951e43

Please sign in to comment.