mirror of
https://github.com/wallabag/wallabag.git
synced 2025-02-16 18:55:15 +00:00
Fixed #49 - test si non vide
This commit is contained in:
parent
ebf7a07bff
commit
f0fc50119b
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@ function get_poche_url()
|
|||
{
|
||||
$protocol = "http";
|
||||
if(isset($_SERVER['HTTPS'])) {
|
||||
if($_SERVER['HTTPS'] != "off") {
|
||||
if($_SERVER['HTTPS'] != "off" && $_SERVER['HTTPS'] != "") {
|
||||
$protocol = "https";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue