From 68298638472af19eccb8a19c77f05609e7fcf4d7 Mon Sep 17 00:00:00 2001 From: mensonge Date: Wed, 4 Feb 2009 14:00:16 +0000 Subject: Interface fix: improve referer behaviour (going back to a page) git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@248 b3834d28-1941-0410-a4f8-b48e95affb8f --- bookmarks.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'bookmarks.php') diff --git a/bookmarks.php b/bookmarks.php index ee3f96b..26bc55f 100644 --- a/bookmarks.php +++ b/bookmarks.php @@ -41,6 +41,7 @@ isset($_POST['description']) ? define('POST_DESCRIPTION', $_POST['description']) isset($_POST['privateNote']) ? define('POST_PRIVATENOTE', $_POST['privateNote']): define('POST_PRIVATENOTE', ''); isset($_POST['status']) ? define('POST_STATUS', $_POST['status']): define('POST_STATUS', ''); isset($_POST['tags']) ? define('POST_TAGS', $_POST['tags']): define('POST_TAGS', ''); +isset($_POST['referrer']) ? define('POST_REFERRER', $_POST['referrer']): define('POST_REFERRER', ''); isset($_GET['popup']) ? define('GET_POPUP', $_GET['popup']): define('GET_POPUP', ''); isset($_POST['popup']) ? define('POST_POPUP', $_POST['popup']): define('POST_POPUP', ''); @@ -148,7 +149,10 @@ if ($userservice->isLoggedOn() && POST_SUBMITTED != '') { if ($GLOBALS['useredir']) { $address = $GLOBALS['url_redir'] . $address; } - //header('Location: '. $address); // not useful + + if(POST_REFERRER != '') { + header('Location: '. POST_REFERRER); + }die('pr'.POST_REFERRER); } } else { $tplVars['error'] = T_('There was an error saving your bookmark. Please try again or contact the administrator.'); @@ -194,6 +198,7 @@ if ($templatename == 'editbookmark.tpl') { ); } $title = T_('Add a Bookmark'); + $tplVars['referrer'] = $_SERVER['HTTP_REFERER']; $tplVars['pagetitle'] = $title; $tplVars['subtitle'] = $title; $tplVars['btnsubmit'] = T_('Add Bookmark'); @@ -262,6 +267,7 @@ if ($templatename == 'editbookmark.tpl') { $tplVars['summarizeLinkedTags'] = true; $tplVars['pageName'] = PAGE_BOOKMARKS; + $templateservice->loadTemplate($templatename, $tplVars); if ($usecache && $endcache) { -- cgit v1.2.3