]> git.immae.eu Git - github/shaarli/Shaarli.git/commitdiff
Add HTTPS support for title extracting feature 326/head
authorArthurHoaro <arthur@hoa.ro>
Mon, 31 Aug 2015 10:27:56 +0000 (12:27 +0200)
committerArthurHoaro <arthur@hoa.ro>
Mon, 31 Aug 2015 10:30:59 +0000 (12:30 +0200)
index.php

index ba70b29c966a0221a657aac2f5f5cdde1765b355..9c3f7c1b37d90863302ca16bf1191a678eb8a0ec 100755 (executable)
--- a/index.php
+++ b/index.php
@@ -1497,8 +1497,8 @@ function renderPage()
             $description = (empty($_GET['description']) ? '' : $_GET['description']);
             $tags = (empty($_GET['tags']) ? '' : $_GET['tags'] );
             $private = (!empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0);
-            // If this is an HTTP link, we try go get the page to extract the title (otherwise we will to straight to the edit form.)
-            if (empty($title) && $url->getScheme() == 'http') {
+            // 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.)
+            if (empty($title) && strpos($url->getScheme(), 'http') !== false) {
                 list($status,$headers,$data) = getHTTP($url,4); // Short timeout to keep the application responsive.
                 // FIXME: Decode charset according to specified in either 1) HTTP response headers or 2) <head> in html
                 if (strpos($status,'200 OK')!==false) {