";
echo "Administration // Bad Word Filter
";
if (!is_admin($username)) {
echo "
Sie haben keine Berechtigung zur Administration.
\n";
echo "";
footer_show("footer.inc.php");
exit;
}
$datei = $settings_pfad . "/badword.txt";
$fp = fopen($datei,"w");
flock($fp,1);
fwrite($fp, "$badwords");
flock($fp,3);
fclose($fp);
echo "Erfolgreich gespeichert
";
echo "
Zurück";
echo "";
footer_show("footer.inc.php");
exit;
?>