diff options
author | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-17 11:31:16 +0000 |
---|---|---|
committer | mensonge <mensonge@b3834d28-1941-0410-a4f8-b48e95affb8f> | 2009-02-17 11:31:16 +0000 |
commit | 0025ca22a274865fa2a7a045323b3eb418705c4d (patch) | |
tree | 448deda38a8e83c053c6edd3ad295094015e787a /watch.php | |
parent | dd87df68234d628104d3b3bb73361145824c58f4 (diff) | |
download | semanticscuttle-0025ca22a274865fa2a7a045323b3eb418705c4d.tar.gz semanticscuttle-0025ca22a274865fa2a7a045323b3eb418705c4d.tar.bz2 |
Interface fix: add close contacts into watchlist page.
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@288 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'watch.php')
-rw-r--r-- | watch.php | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -24,14 +24,16 @@ require_once('header.inc.php'); /* Service creation: only useful services are created */ //No specific services -/* Managing current logged user */ -$currentUser = $userservice->getCurrentObjectUser(); +isset($_POST['contact']) ? define('POST_CONTACT', $_POST['contact']): define('POST_CONTACT', ''); +isset($_GET['contact']) ? define('GET_CONTACT', $_GET['contact']): define('GET_CONTACT', ''); /* Managing path info */ @list($url, $user) = isset($_SERVER['PATH_INFO']) ? explode('/', $_SERVER['PATH_INFO']) : NULL; -if($user=='' && $_POST['contact'] != '') { - $user = $_POST['contact']; +if($user=='' && POST_CONTACT != '') { + $user = POST_CONTACT; +} elseif($user=='' && GET_CONTACT != '') { + $user = GET_CONTACT; } if ($userservice->isLoggedOn() && $user) { |