From 29422fa55379aa61a61019b832c83dab6d450264 Mon Sep 17 00:00:00 2001 From: cweiske Date: Sat, 3 Oct 2009 14:00:33 +0000 Subject: move files to new locations git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@386 b3834d28-1941-0410-a4f8-b48e95affb8f --- watch.php | 61 ------------------------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 watch.php (limited to 'watch.php') diff --git a/watch.php b/watch.php deleted file mode 100644 index 01a6bcc..0000000 --- a/watch.php +++ /dev/null @@ -1,61 +0,0 @@ -isLoggedOn() && $user) { - $pagetitle = ''; - - $userid = $userservice->getIdFromUser($user); - - if($userid == NULL) { - $tplVars['error'] = sprintf(T_('User with username %s was not found'), $user); - $templateservice->loadTemplate('error.404.tpl', $tplVars); - exit(); - } - - $watched = $userservice->getWatchStatus($userid, $currentUser->getId()); - $changed = $userservice->setWatchStatus($userid); - - if ($watched) { - $tplVars['msg'] = T_('User removed from your watchlist'); - } else { - $tplVars['msg'] = T_('User added to your watchlist'); - } - - header('Location: '. createURL('watchlist', $currentUser->getUsername())); -} -?> -- cgit v1.2.3-54-g00ecf