Quiz Mod Parse Error
Verfasst: 11.02.2005 20:26
Ich habe beim Einbau des Quiz Mod folgende Fehlermeldung:
Die Zeile 674 ist:
Das Einzigste was in der Datei zu ändern war ist:
Der Code um die Zeile herum ist:Parse error: parse error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/www/n4b225/html/forum2/includes/bbcode.php on line 674
Code: Alles auswählen
function undo_htmlspecialchars($input)
{
$input = preg_replace("/>/i", ">", $input);
$input = preg_replace("/</i", "<", $input);
$input = preg_replace("/"/i", "\"", $input);
$input = preg_replace("/&/i", "&", $input);
return $input;
}
Code: Alles auswählen
$input = preg_replace("/"/i", "\"", $input);
Also hatte mit dieser Stelle gar nix zu tun.#
#-----[ OPEN ]------------------------------------------
#
includes/bbcode.php
#
#-----[ FIND ]------------------------------------------
#
die("Hacking attempt");
}
#
#-----[ AFTER, ADD ]------------------------------------------
#
// BEGIN Quiz Hack
if ( defined('BBCODE_INCLUDED') )
{
return;
}
define('BBCODE_INCLUDED', true);
// END Quiz Hack