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 committed Dec 9, 2016
1 parent 1329da4 commit 6358111
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions application/core/LSYii_Controller.php
Expand Up @@ -170,4 +170,14 @@ 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 6358111

Please sign in to comment.