diff options
author | filip <filip.komar@gmail.com> | 2015-07-26 22:53:23 +0200 |
---|---|---|
committer | filip <filip.komar@gmail.com> | 2015-07-26 22:53:23 +0200 |
commit | 8f203863b0fb25675797fcdb8fece084ba76847f (patch) | |
tree | bf02a39de4325f6a38aba4321a03ecbe7cbfd61d /langs.inc.php | |
parent | 25b4f6672f1a19992601a0646961fde043732340 (diff) | |
download | www-8f203863b0fb25675797fcdb8fece084ba76847f.tar www-8f203863b0fb25675797fcdb8fece084ba76847f.tar.gz www-8f203863b0fb25675797fcdb8fece084ba76847f.tar.bz2 www-8f203863b0fb25675797fcdb8fece084ba76847f.tar.xz www-8f203863b0fb25675797fcdb8fece084ba76847f.zip |
fix of default to https
Diffstat (limited to 'langs.inc.php')
-rw-r--r-- | langs.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/langs.inc.php b/langs.inc.php index 4826b4ecf..5c18dd2dc 100644 --- a/langs.inc.php +++ b/langs.inc.php @@ -60,7 +60,7 @@ function domain_redirect($host, $domains_lang, $vhost) } else { $path = '?langs'; } - header(sprintf('Location: %s://%s/%s', 'http', $vhost, $path)); + header(sprintf('Location: %s://%s/%s', 'https', $vhost, $path)); die; } |