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_url.class | |
parent | 5a51732fc8d845d4c0e308b6340d9f4e20aa6ff4 (diff) | |
download | itools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.tar.gz itools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.tar.bz2 itools-8ecc962be8280dabe1d01fe1cc36ff746bd3bfa2.zip |
http: -> https:
Diffstat (limited to 'it_url.class')
-rw-r--r-- | it_url.class | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/it_url.class b/it_url.class index 01913e3..90aa4bd 100644 --- a/it_url.class +++ b/it_url.class @@ -22,7 +22,7 @@ class it_url { /* E.g. HTTP://falcon:joshua@www.Relog.CH.:80/default.asp */ - var $url; /* E.g. http://www.relog.ch/ */ + var $url; /* E.g. https://www.relog.ch/ */ var $protocol; /* E.g. http */ var $hostname; /* E.g. relog.ch */ var $realhostname; /* E.g. www.relog.ch */ @@ -848,7 +848,7 @@ static function _atomicwrite($path, $data) /** * Make an URL absolute by using host and protocol from current Apache request (but not port number) - * @param $url Optional URL ( foo.html, /foo.html, //host/bar.html, http://host/bar.html ), default self + * @param $url Optional URL ( foo.html, /foo.html, //host/bar.html, https://host/bar.html ), default self * @param $proto_force Optional protocol to enforce, default protocol of current request or http if in script context * @return absolute version of URL ( http[s]://host/bar.html ) */ @@ -877,7 +877,7 @@ static function absolute($url = null, $proto_force = null, $prefix = '') /** * Craft a valid redirect URL, send Location: header and terminate execution - * @param $url Optional URL ( foo.html, /foo.html, //host/bar.html, http://host/bar.html ), default self + * @param $url Optional URL ( foo.html, /foo.html, //host/bar.html, https://host/bar.html ), default self * @param $type Type of redirect, "temporary" or "permanent", default temporary * @return This method never returns. */ |