03.02.2007, 16:48
Ich müsste also
gegen
ersetzen?
Wenn ja, dann klappt das bei mir leider noch nicht.
PHP-Code:
if($customfield['type'] == "textarea")
{
$customfieldval = nl2br(htmlspecialchars_uni($userfields[$field]));
}
PHP-Code:
if($customfield['type'] == "textarea")
{
$customfieldval = require_once "inc/class_parser.php";
$parser = new postParser;
$parser_options = array(
"allow_html" => "no",
"allow_mycode" => "yes",
"allow_smilies" => "yes",
"allow_imgcode" => "yes"
);
$message = $parser->parse_message($message, $parser_options);
}
Wenn ja, dann klappt das bei mir leider noch nicht.