diff options
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. */ |