This commit is contained in:
2026-05-15 20:23:25 +02:00
parent c980004309
commit bc5cae7e82
74 changed files with 563 additions and 130 deletions

View File

@@ -1,4 +1,4 @@
<?
<?php
/**
* $Id: Request.class.php 395 2008-05-28 19:41:06Z dakl $
@@ -18,7 +18,7 @@ class Request {
if (isset($_REQUEST[$value])) {
if ($xssremover == true) {
$func = create_function('$a', 'return Utils::RemoveXss($a);'); //FIXME: Gdy wejdzie php5.3 mo<6D>na to troche przerobi<62> bo wprowadzaj? now? wersj<73> funkcji lambda
$func = array('Utils', 'RemoveXss'); //FIXME: Gdy wejdzie php5.3 mo<6D>na to troche przerobi<62> bo wprowadzaj? now? wersj<73> funkcji lambda
return array_map($func, $_REQUEST[$value]);
} else {