]> git.mxchange.org Git - friendica.git/blobdiff - mod/bookmarklet.php
Merge pull request #5726 from rabuzarus/201805_-_edit_album_modal
[friendica.git] / mod / bookmarklet.php
index a26757740a3daf6625e4edce488951fef8e8c789..21b2039c5891c97260aae78c34a91c8a84716540 100644 (file)
@@ -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);