You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
897 B
36 lines
897 B
<?php
|
|
require("../../../class/connect.php");
|
|
require("../../../class/q_functions.php");
|
|
require("../../../class/db_sql.php");
|
|
require("../../class/user.php");
|
|
$link=db_connect();
|
|
$empire=new mysqlquery();
|
|
$editor=2;
|
|
eCheckCloseMods('member');//关闭模块
|
|
$user=islogin();
|
|
$mid=(int)$_GET['mid'];
|
|
$username=RepPostStr($_GET['username']);
|
|
$re=RepPostStr($_GET['re']);
|
|
$title='';
|
|
$msgtext='';
|
|
if($mid)
|
|
{
|
|
$r=$empire->fetch1("select title,msgtext,from_username from {$dbtbpre}enewsqmsg where mid=$mid and to_username='$user[username]' limit 1");
|
|
if(empty($username)&&$r['from_username']!=$user['username'])
|
|
{
|
|
$username=$r['from_username'];
|
|
}
|
|
$title=$r['title'];
|
|
$msgtext=$r['msgtext'];
|
|
//回复
|
|
if($re==1)
|
|
{
|
|
$title="Re:".$title;
|
|
$msgtext="\r\n"."------原文内容------\r\n".$msgtext;
|
|
}
|
|
}
|
|
//导入模板
|
|
require(ECMS_PATH.'e/template/member/AddMsg.php');
|
|
db_close();
|
|
$empire=null;
|
|
?>
|