- Posts: 26
- Thank you received: 5
Ask the community, share ideas, and connect with other LimeSurvey users!
118 parent::init(); 119 $this->normalizeRequest(); 120 } 121 122 /** 123 * Normalizes the request data. 124 * This method strips off slashes in request data if get_magic_quotes_gpc() returns true. 125 * It also performs CSRF validation if {@link enableCsrfValidation} is true. 126 */ 127 protected function normalizeRequest() 128 { 129 // normalize request 130 if(function_exists('get_magic_quotes_gpc') && get_magic_quotes_gpc()) 131 { 132 if(isset($_GET)) 133 $_GET=$this->stripSlashes($_GET); 134 if(isset($_POST)) 135 $_POST=$this->stripSlashes($_POST); 136 if(isset($_REQUEST)) 137 $_REQUEST=$this->stripSlashes($_REQUEST); 138 if(isset($_COOKIE)) 139 $_COOKIE=$this->stripSlashes($_COOKIE); 140 } 141 142 if($this->enableCsrfValidation)
You are not my customerRuif wrote: This is not the most customer frienly reaction.
This is not the most customer frienly reaction. Just look in the mentioned file in your latest release. Get ready for php 7.4!!
Correct, the GA of PHP 7.4 is planned for 28th Nov 2019holch wrote: And if I read www.php.net/releases/index.php correctly, then PHP 7.4 hasn't even been officially released yet.
Yep, found this in some articles later. But it is still not 28th of November. At least not here. Not even in Germany. Maybe in Australia and Japan.Correct, the GA of PHP 7.4 is planned for 28th Nov 2019