CORE_PATH/lib/request.php [209]
204 if (isset($this->get['_url'])) unset($this->get['_url']);
205 }
206
207 // Обработка Magic quotes
208 if (get_magic_quotes_gpc()) {
209 $this->strip_slashes(&$this->get);
210 $this->strip_slashes(&$this->post);
211 }
212
213 // Декодирование POST при Ajax-запросе
214 if ($this->is_ajax && (App::$charset != 'utf-8' && App::$charset != 'utf8')) {
-
{PHP internal call} » Kernel::shutdown_handler()