diff options
-rwxr-xr-x | index.php | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1497,8 +1497,8 @@ function renderPage() | |||
1497 | $description = (empty($_GET['description']) ? '' : $_GET['description']); | 1497 | $description = (empty($_GET['description']) ? '' : $_GET['description']); |
1498 | $tags = (empty($_GET['tags']) ? '' : $_GET['tags'] ); | 1498 | $tags = (empty($_GET['tags']) ? '' : $_GET['tags'] ); |
1499 | $private = (!empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0); | 1499 | $private = (!empty($_GET['private']) && $_GET['private'] === "1" ? 1 : 0); |
1500 | // 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.) | 1500 | // 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.) |
1501 | if (empty($title) && $url->getScheme() == 'http') { | 1501 | if (empty($title) && strpos($url->getScheme(), 'http') !== false) { |
1502 | list($status,$headers,$data) = getHTTP($url,4); // Short timeout to keep the application responsive. | 1502 | list($status,$headers,$data) = getHTTP($url,4); // Short timeout to keep the application responsive. |
1503 | // FIXME: Decode charset according to specified in either 1) HTTP response headers or 2) <head> in html | 1503 | // FIXME: Decode charset according to specified in either 1) HTTP response headers or 2) <head> in html |
1504 | if (strpos($status,'200 OK')!==false) { | 1504 | if (strpos($status,'200 OK')!==false) { |