X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fbookmarklet.php;h=21b2039c5891c97260aae78c34a91c8a84716540;hb=92c4ca091193e571d76a9db7b2d4078e2b3dc473;hp=a26757740a3daf6625e4edce488951fef8e8c789;hpb=67dc08d120828fe277584ba4127340eeb447f8d4;p=friendica.git diff --git a/mod/bookmarklet.php b/mod/bookmarklet.php index a26757740a..21b2039c58 100644 --- a/mod/bookmarklet.php +++ b/mod/bookmarklet.php @@ -26,7 +26,7 @@ function bookmarklet_content(App $a) return $o; } - $referer = normalise_link($_SERVER["HTTP_REFERER"]); + $referer = normalise_link(defaults($_SERVER, 'HTTP_REFERER', '')); $page = normalise_link(System::baseUrl() . "/bookmarklet"); if (!strstr($referer, $page)) { @@ -43,7 +43,7 @@ function bookmarklet_content(App $a) 'bang' => '', 'visitor' => 'block', 'profile_uid' => local_user(), - 'title' => trim($_REQUEST["title"], "*"), + 'title' => trim(defaults($_REQUEST, 'title', ''), "*"), 'content' => $content ]; $o = status_editor($a, $x, 0, false);