回复的时候提示非正常操作,请楼主检查!
jim19822000 发表于 2008-12-3 11:15
检查一下source/CP_comment.php代码是不是最新的。有新增加的代码:
//活动
$datetype=$_POST['datetype'];
if($datetype==1)
{
$n_url = "date_city.php?dateid=$id&op=view";
$note_type = 'datecomment';
$note = lang('note_date_comment', array($n_url));
$q_note = lang('note_date_comment_reply', array($n_url));
$msg = 'do_success';
$magvalues = array();
break;
}
elseif($datetype==2)
{
$n_url = "date_game.php?dateid=$id&op=view";
$note_type = 'datecomment';
$note = lang('note_date_comment', array($n_url));
$q_note = lang('note_date_comment_reply', array($n_url));
$msg = 'do_success';
$magvalues = array();
break;
}
elseif($datetype==3)
{
$n_url = "date_trip.php?dateid=$id&op=view";
$note_type = 'datecomment';
$note = lang('note_date_comment', array($n_url));
$q_note = lang('note_date_comment_reply', array($n_url));
$msg = 'do_success';
$magvalues = array();
break;
}
case 'datepic':
$datetype=$_POST['datetype'];
if($datetype==1)
{
$n_url = "date_city.php?dateid=$id&op=view";
$note_type = 'piccomment';
$note = lang('note_pic_comment', array($n_url));
$q_note = lang('note_pic_comment_reply', array($n_url));
$msg = 'do_success';
$magvalues = array();
break;
}
elseif($datetype==2)
{
$n_url = "date_game.php?dateid=$id&op=view";
$note_type = 'piccomment';
$note = lang('note_pic_comment', array($n_url));
$q_note = lang('note_pic_comment_reply', array($n_url));
$msg = 'do_success';
$magvalues = array();
break;
}
elseif($datetype==3)
{
$n_url = "date_trip.php?dateid=$id&op=view";
$note_type = 'piccomment';
$note = lang('note_pic_comment', array($n_url));
$q_note = lang('note_pic_comment_reply', array($n_url));
$msg = 'do_success';
$magvalues = array();
break;
}
} |