aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--index.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.php b/index.php
index 872acf09..8f0bd4b9 100644
--- a/index.php
+++ b/index.php
@@ -1611,11 +1611,11 @@ function renderPage()
1611 $link_is_new = true; 1611 $link_is_new = true;
1612 $linkdate = strval(date('Ymd_His')); 1612 $linkdate = strval(date('Ymd_His'));
1613 // Get title if it was provided in URL (by the bookmarklet). 1613 // Get title if it was provided in URL (by the bookmarklet).
1614 $title = (empty($_GET['title']) ? '' : $_GET['title'] ); 1614 $title = empty($_GET['title']) ? '' : escape($_GET['title']);
1615 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that] 1615 // Get description if it was provided in URL (by the bookmarklet). [Bronco added that]
1616 $description = (empty($_GET['description']) ? '' : $_GET['description']); 1616 $description = empty($_GET['description']) ? '' : escape($_GET['description']);
1617 $tags = (empty($_GET['tags']) ? '' : $_GET['tags'] ); 1617 $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']);
1618 $private = (!empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0); 1618 $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0;
1619 // If this is an HTTP(S) link, we try go get the page to extract the title (otherwise we will to straight to the edit form.) 1619 // If this is an HTTP(S) link, we try go get the page to extract the title (otherwise we will to straight to the edit form.)
1620 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) { 1620 if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) {
1621 // Short timeout to keep the application responsive 1621 // Short timeout to keep the application responsive