| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 | <?phprequire_once( realpath(dirname(__FILE__)) . '/../common/config.php');
 require_once( realpath(dirname(__FILE__)) . '/function_is_login.php');
 if (!is_login())
 {
 header("Location: index.php");
 exit;
 }
 
 $id = $_GET['id'];
 
 if ($model = News::first($id))
 {
 $model->actived = ($model->actived + 1) % 2;
 if ($model->save())
 {
 header("Location: news_index.php?msg=Update Success");
 exit;
 }
 }
 
 ?>
 Update News Status Error
 |