diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1619,11 +1619,11 @@ function renderPage() | |||
1619 | $link_is_new = true; | 1619 | $link_is_new = true; |
1620 | $linkdate = strval(date('Ymd_His')); | 1620 | $linkdate = strval(date('Ymd_His')); |
1621 | // Get title if it was provided in URL (by the bookmarklet). | 1621 | // Get title if it was provided in URL (by the bookmarklet). |
1622 | $title = (empty($_GET['title']) ? '' : $_GET['title'] ); | 1622 | $title = empty($_GET['title']) ? '' : escape($_GET['title']); |
1623 | // Get description if it was provided in URL (by the bookmarklet). [Bronco added that] | 1623 | // Get description if it was provided in URL (by the bookmarklet). [Bronco added that] |
1624 | $description = (empty($_GET['description']) ? '' : $_GET['description']); | 1624 | $description = empty($_GET['description']) ? '' : escape($_GET['description']); |
1625 | $tags = (empty($_GET['tags']) ? '' : $_GET['tags'] ); | 1625 | $tags = empty($_GET['tags']) ? '' : escape($_GET['tags']); |
1626 | $private = (!empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0); | 1626 | $private = !empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0; |
1627 | // 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.) | 1627 | // 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.) |
1628 | if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) { | 1628 | if (empty($title) && strpos(get_url_scheme($url), 'http') !== false) { |
1629 | // Short timeout to keep the application responsive | 1629 | // Short timeout to keep the application responsive |