r304: Added tab navigation system.
[bugdar.git] / favourite.php
1 <?php
2 /*=====================================================================*\
3 || ################################################################### ||
4 || # BugStrike [#]version[#]
5 || # --------------------------------------------------------------- # ||
6 || # Copyright ©2002-[#]year[#] by Iris Studios, Inc. All Rights Reserved. # ||
7 || # This file may not be reproduced in any way without permission. # ||
8 || # --------------------------------------------------------------- # ||
9 || # User License Agreement at http://www.iris-studios.com/license/ # ||
10 || ################################################################### ||
11 \*=====================================================================*/
12
13 define('SVN', '$Id$');
14
15 $focus['showreport'] = 'focus';
16
17 require_once('./global.php');
18
19 if (!$bugsys->userinfo['userid'])
20 {
21 $message->error_permission();
22 }
23
24 // ###################################################################
25
26 if (empty($_REQUEST['do']))
27 {
28 $message->error(lang::p('error_invalid_id'));
29 }
30
31 // ###################################################################
32
33 if ($_REQUEST['do'] == 'handle')
34 {
35 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = " . intval($bugsys->in['bugid']) . ((!can_perform('canviewhidden')) ? " AND !bug.hidden" : ''));
36 if (!$bug)
37 {
38 $message->error(lang::p('error_invalid_id'));
39 }
40
41 if ($db->query_first("SELECT * FROM " . TABLE_PREFIX . "favourite WHERE userid = " . $bugsys->userinfo['userid'] . " AND bugid = " . intval($bugsys->in['bugid'])))
42 {
43 $db->query("DELETE FROM " . TABLE_PREFIX . "favourite WHERE userid = " . $bugsys->userinfo['userid'] . " AND bugid = " . intval($bugsys->in['bugid']));
44 $message->redirect('Favourite removed', "showreport.php?bugid=" . intval($bugsys->in['bugid']));
45 }
46 else
47 {
48 $db->query("INSERT INTO " . TABLE_PREFIX . "favourite (userid, bugid) VALUES (" . $bugsys->userinfo['userid'] . ", " . intval($bugsys->in['bugid']) . ")");
49 $message->redirect('Favourite added', "showreport.php?bugid=" . intval($bugsys->in['bugid']));
50 }
51 }
52
53 /*=====================================================================*\
54 || ###################################################################
55 || # $HeadURL$
56 || # $Id$
57 || ###################################################################
58 \*=====================================================================*/
59 ?>