1
0
mirror of https://github.com/vrana/adminer.git synced 2025-08-08 07:36:44 +02:00

Change protocol to HTTPS

This commit is contained in:
Jakub Vrana
2015-09-08 11:41:29 -07:00
parent 69ff979ee7
commit a248f8b008
2 changed files with 3 additions and 3 deletions

View File

@@ -1137,7 +1137,7 @@ function select_value($val, $link, $field, $text_length) {
if ($protocol = is_url($val)) {
$link = (($protocol == "http" && $HTTPS) || preg_match('~WebKit~i', $_SERVER["HTTP_USER_AGENT"]) // WebKit supports noreferrer since 2009
? $val // HTTP links from HTTPS pages don't receive Referer automatically
: "$protocol://www.adminer.org/redirect/?url=" . urlencode($val) // intermediate page to hide Referer
: "https://www.adminer.org/redirect/?url=" . urlencode($val) // intermediate page to hide Referer
);
}
}