assign('msg',tra("You must log in to use this feature")); $smarty->display("styles/$style_base/error.tpl"); die; } if($feature_user_watches != 'y') { $smarty->assign('msg',tra("This feature is disabled")); $smarty->display("styles/$style_base/error.tpl"); die; } if(isset($_REQUEST['hash'])) { $tikilib->remove_user_watch_by_hash($_REQUEST['hash']); } if(isset($_REQUEST["delete"])&&isset($_REQUEST['watch'])) { foreach(array_keys($_REQUEST["watch"]) as $item) { $tikilib->remove_user_watch_by_hash($item); } } // Get watch events and put them in watch_events $events = $tikilib->get_watches_events(); $smarty->assign('events',$events); // if not set event type then all if(!isset($_REQUEST['event'])) $_REQUEST['event']=''; // get all the information for the event $watches = $tikilib->get_user_watches($user,$_REQUEST['event']); $smarty->assign('watches',$watches); include_once('tiki-mytiki_shared.php'); $smarty->assign('mid','tiki-user_watches.tpl'); $smarty->display("styles/$style_base/tiki.tpl"); ?>