diff options
author | Urban Müller | 2024-06-10 18:40:43 +0200 |
---|---|---|
committer | Urban Müller | 2024-06-10 18:40:43 +0200 |
commit | 8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2 (patch) | |
tree | 6b58eab491f4f027c3db647c1111746271965cdc /it_html.class | |
parent | 5a51732fc8d845d4c0e308b6340d9f4e20aa6ff4 (diff) | |
download | itools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.tar.gz itools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.tar.bz2 itools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.zip |
http: -> https:
Diffstat (limited to 'it_html.class')
-rw-r--r-- | it_html.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_html.class b/it_html.class index 9780d5d..7e7f190 100644 --- a/it_html.class +++ b/it_html.class @@ -252,7 +252,7 @@ function body($args) $toggled_host = preg_replace("/\.$var(-[^.-]+)?/", "", $_SERVER['HTTP_HOST']); else $toggled_host = preg_replace('/^(\w+(-\w+)*)/', "\$1.$var", $_SERVER['HTTP_HOST']); - $debug_links[] = a(array('href' => U('http://' . $toggled_host . $_SERVER['REQUEST_URI']), 'style' => 'font-weight:' . (EDC($var) ? 'bold' : 'normal') . ';'), $var); + $debug_links[] = a(array('href' => U('https://' . $toggled_host . $_SERVER['REQUEST_URI']), 'style' => 'font-weight:' . (EDC($var) ? 'bold' : 'normal') . ';'), $var); } $args[] = div(array('style' => 'position:fixed; bottom:0; z-index:9999; font-family:monospace; background:white'), "Debugvars: " . implode(" ", $debug_links)); } |