Merge pull request #90 from shaarli/issue-87

Redirect to home page after deleting a link (Fixes issue 87)
This commit is contained in:
nodiscc 2015-01-05 20:13:15 +01:00
commit 002f9625ec
1 changed files with 1 additions and 3 deletions

View File

@ -1546,9 +1546,7 @@ function renderPage()
// If we are called from the bookmarklet, we must close the popup:
if (isset($_GET['source']) && $_GET['source']=='bookmarklet') { echo '<script language="JavaScript">self.close();</script>'; exit; }
$returnurl = ( isset($_POST['returnurl']) ? $_POST['returnurl'] : '?' );
if ($returnurl=='?') { $returnurl = (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '?'); }
header('Location: '.$returnurl); // After deleting the link, redirect to the page the user was on.
header('Location: ?'); // After deleting the link, redirect to the home page.
exit;
}