Please Login First!";
exit(1);
}
echo "
";
echo "".$MSG_NEWS."-".$MSG_SETMESSAGE."
";
$msgfile=$OJ_SAE?"saestor://web/msg.txt":"msg/$domain.txt";
if(isset($_POST['do'])){
require_once("../include/check_post_key.php");
mkdir("msg");
$fp = fopen($msgfile,"w");
$msg = $_POST['msg'];
$msg = str_replace("", "", $msg);
$msg = str_replace("
", "
", $msg);
$msg = str_replace(",", ",", $msg);
if(false){
$title = stripslashes($title);
}
$msg = RemoveXSS($msg);
fputs($fp,$msg);
fclose($fp);
echo "Message Updated At ".date('Y-m-d h:i:s')."
";
}
if(file_exists($msgfile))
$msg = file_get_contents($msgfile);
include("kindeditor.php");
?>