undarray()
nicht funktionieren.foreach()
In der Datei
steht:include/inc_lib/default.inc.php
Code: Select all
function remove_unsecure_rptags($check) {
// this is for security reasons
// where you can use input fields for
// code injection
//remove special replacement tags
$check = preg_replace('/\{PHP:(.*?)\}/i', '$1', $check);
$check = preg_replace('/\{PHPVAR:(.*?)\}/si', '$1', $check);
$check = preg_replace('/\[PHP\](.*?)\[\/PHP\]/si', '$1', $check);
$check = preg_replace('/\{URL:(.*?)\}/i', '$1', $check);
$check = str_replace('[PHP]', '[ PHP ]', $check);
$check = str_replace('[/PHP]', '[ /PHP ]', $check);
$check = str_replace('{PHP:', '{ PHP :', $check);
$check = str_replace('{PHPVAR:', '{ PHPVAR :', $check);
$check = str_replace('{URL:', '{ URL :', $check);
return $check;
}
Vielen Dank im vorraus.