]>
src.bluestatic.org Git - bugdar.git/blob - favourite.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 \*=====================================================================*/
13 define('SVN', '$Id$');
15 require_once('./global.php
');
17 if (!$bugsys->userinfo['userid
'])
19 $message->error_permission();
22 // ###################################################################
24 if (empty($_REQUEST['do']))
26 $message->error(lang::p('error_invalid_id
'));
29 // ###################################################################
31 if ($_REQUEST['do'] == 'handle
')
33 $bug = $db->query_first("SELECT * FROM " . TABLE_PREFIX . "bug WHERE bugid = " . intval($bugsys->in['bugid
']) . ((!can_perform('canviewhidden
')) ? " AND !bug.hidden" : ''));
36 $message->error(lang::p('error_invalid_id
'));
39 if ($db->query_first("SELECT * FROM " . TABLE_PREFIX . "favourite WHERE userid = " . $bugsys->userinfo['userid
'] . " AND bugid = " . intval($bugsys->in['bugid
'])))
41 $db->query("DELETE FROM " . TABLE_PREFIX . "favourite WHERE userid = " . $bugsys->userinfo['userid
'] . " AND bugid = " . intval($bugsys->in['bugid
']));
42 $message->redirect('Favourite removed
', "showreport.php?bugid=" . intval($bugsys->in['bugid
']));
46 $db->query("INSERT INTO " . TABLE_PREFIX . "favourite (userid, bugid) VALUES (" . $bugsys->userinfo['userid
'] . ", " . intval($bugsys->in['bugid
']) . ")");
47 $message->redirect('Favourite added
', "showreport.php?bugid=" . intval($bugsys->in['bugid
']));
51 /*=====================================================================*\
52 || ###################################################################
55 || ###################################################################
56 \*=====================================================================*/