summaryrefslogtreecommitdiffstatshomepage
path: root/bookmarks.php
diff options
context:
space:
mode:
authorGravatar cweiske2009-09-17 12:31:53 +0000
committerGravatar cweiske2009-09-17 12:31:53 +0000
commitbf02d85a46525bdd9df1d8c1ec3f2fa34ef74288 (patch)
tree48941f73977ffba8eceb7d265064ccf4f76a2ad0 /bookmarks.php
parent14f617d641605ccb8512d8aa5de33b3972151263 (diff)
downloadscuttle-bf02d85a46525bdd9df1d8c1ec3f2fa34ef74288.tar.gz
scuttle-bf02d85a46525bdd9df1d8c1ec3f2fa34ef74288.zip
fix bug #2834293: Patch for E_NOTICE when referer is missing
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@346 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'bookmarks.php')
-rw-r--r--bookmarks.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/bookmarks.php b/bookmarks.php
index a5f384e..91d0999 100644
--- a/bookmarks.php
+++ b/bookmarks.php
@@ -207,7 +207,10 @@ if ($templatename == 'editbookmark.tpl') {
}
$title = T_('Add a Bookmark');
- $tplVars['referrer'] = $_SERVER['HTTP_REFERER'];
+ $tplVars['referrer'] = '';;
+ if (isset($_SERVER['HTTP_REFERER'])) {
+ $tplVars['referrer'] = $_SERVER['HTTP_REFERER'];
+ }
$tplVars['pagetitle'] = $title;
$tplVars['subtitle'] = $title;
$tplVars['btnsubmit'] = T_('Add Bookmark');