fixed minor typos in comment

This commit is contained in:
Jesus M. Castagnetto 2013-10-07 10:51:33 -05:00
parent a5f8b05912
commit fd54cf6f06

View file

@ -302,8 +302,8 @@ class Pico {
*/
private function get_protocol()
{
// need to check if HTTPS is set and is not 'off' (and ISAPI/IIS
// peculiarity)
// need to check if HTTPS is set and is not 'off' (a documented
// ISAPI/IIS peculiarity)
if (isset($_SERVER['HTTPS']) && ($_SERVER['HTTPS'] !== 'off')) {
$protocol = 'https';
} else {