summaryrefslogtreecommitdiff
path: root/article.php
blob: aff2d36180ad2e29d328f2b03ad9d6e7dba710bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?PHP
 if(!isset($sid) && !isset($tid)) { exit(); }

 include "config.inc";
 include "functions.inc";
 include "theme.inc";

 dbconnect();

 if ($save) {
   cookiedecode($user);
   mysql_query("UPDATE users SET umode='$mode', uorder='$order', thold='$thold' where uid='$cookie[0]'");
   getusrinfo($user);
   $info = base64_encode("$userinfo[uid]:$userinfo[uname]:$userinfo[pass]:$userinfo[storynum]:$userinfo[umode]:$userinfo[uorder]:$userinfo[thold]:$userinfo[noscore]");
   setcookie("user","$info",time() + 15552000);
 }

 if($op == "reply") Header("Location: comments.php?op=reply&pid=0&sid=$sid&mode=$mode&order=$order&thold=$thold");

 $result = mysql_query("SELECT * FROM stories WHERE sid = $sid");
 list($sid, $aid, $subject, $time, $abstract, $comments, $article, $category, $informant, $department) = mysql_fetch_row($result);

 $theme->header();

 $reply = "[ <A HREF=\"\"><FONT COLOR=\"$theme->hlcolor2\">home</FONT></A> | <A HREF=\"comments.php?op=reply&pid=0&sid=$sid\"><FONT COLOR=\"$theme->hlcolor2\">add a comment</FONT></A> ]";

 $theme->article($aid, $informant, $time, stripslashes($subject), $department, stripslashes($abstract), stripslashes($comments), stripslashes($article), $reply);

 cookiedecode($user);
 if ($mode != "nocomments") include "comments.php";

 $theme->footer();
?>