Post.php öffnen und dort nach folgendem Block suchen:
}
// Validate the attachment if there is one
// replace as much special characters as possible and remove all other characters
(( ca. Zeile 860 ))
das durch folgendes ersetzen:
$request = mysql_query ("SELECT value FROM {$db_prefix}banned WHERE (type='email' && value='$email')") or database_error(__FILE__, __LINE__);
if (mysql_num_rows($request) > 0)
fatal_error("$txt[678]$txt[430]!");
}
// Validate the attachment if there is one
// replace as much special characters as possible and remove all other characters
Wenn Du willst, kannst Du auch noch:
}
$destination = $submittxt = '';
if ($waction == 'previewmodify')
{
durch
$request = mysql_query ("SELECT value FROM {$db_prefix}banned WHERE (type='email' && value='$email')") or database_error(__FILE__, __LINE__);
if (mysql_num_rows($request) > 0)
fatal_error("$txt[678]$txt[430]!");
}
$destination = $submittxt = '';
if ($waction == 'previewmodify')
{
ersetzen.... dann fliegt der USer auch wenn er auf "Preview" klickt.... hoffe ich