From 07aa80048a417a377a1e85992bf1381c93abadf3 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Sun, 14 Jan 2018 10:38:01 +0100 Subject: [PATCH] Use HTTPS in doc_link() --- adminer/include/editing.inc.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/adminer/include/editing.inc.php b/adminer/include/editing.inc.php index 51f69fb1..d2997494 100644 --- a/adminer/include/editing.inc.php +++ b/adminer/include/editing.inc.php @@ -492,11 +492,11 @@ function ini_bytes($ini) { function doc_link($paths) { global $jush, $connection; $urls = array( - 'sql' => "http://dev.mysql.com/doc/refman/" . substr($connection->server_info, 0, 3) . "/en/", - 'sqlite' => "http://www.sqlite.org/", - 'pgsql' => "http://www.postgresql.org/docs/" . substr($connection->server_info, 0, 3) . "/static/", - 'mssql' => "http://msdn.microsoft.com/library/", - 'oracle' => "http://download.oracle.com/docs/cd/B19306_01/server.102/b14200/", + 'sql' => "https://dev.mysql.com/doc/refman/" . substr($connection->server_info, 0, 3) . "/en/", + 'sqlite' => "https://www.sqlite.org/", + 'pgsql' => "https://www.postgresql.org/docs/" . substr($connection->server_info, 0, 3) . "/static/", + 'mssql' => "https://msdn.microsoft.com/library/", + 'oracle' => "https://download.oracle.com/docs/cd/B19306_01/server.102/b14200/", ); return ($paths[$jush] ? "?" : ""); } -- 2.39.5