X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2FWebRequest.php;h=3ef3bc1e0be49b58a62748473a8b9de3a7d1b271;hb=87c3b700acf2f04bed409f2fd3560aae10cf36e5;hp=0065135ae01087690e28f5729102b7bb3434136f;hpb=fcf58d766db9228a4c4e79c74a0fe1b9340a385d;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/WebRequest.php b/includes/WebRequest.php index 0065135ae0..3ef3bc1e0b 100644 --- a/includes/WebRequest.php +++ b/includes/WebRequest.php @@ -113,7 +113,7 @@ class WebRequest { */ public static function getPathInfo( $want = 'all' ) { global $wgUsePathInfo; - // PATH_INFO is mangled due to http://bugs.php.net/bug.php?id=31892 + // PATH_INFO is mangled due to https://bugs.php.net/bug.php?id=31892 // And also by Apache 2.x, double slashes are converted to single slashes. // So we will use REQUEST_URI if possible. $matches = []; @@ -175,7 +175,7 @@ class WebRequest { } elseif ( $wgUsePathInfo ) { if ( isset( $_SERVER['ORIG_PATH_INFO'] ) && $_SERVER['ORIG_PATH_INFO'] != '' ) { // Mangled PATH_INFO - // http://bugs.php.net/bug.php?id=31892 + // https://bugs.php.net/bug.php?id=31892 // Also reported when ini_get('cgi.fix_pathinfo')==false $matches['title'] = substr( $_SERVER['ORIG_PATH_INFO'], 1 ); @@ -379,7 +379,7 @@ class WebRequest { */ private function getGPCVal( $arr, $name, $default ) { # PHP is so nice to not touch input data, except sometimes: - # http://us2.php.net/variables.external#language.variables.external.dot-in-names + # https://secure.php.net/variables.external#language.variables.external.dot-in-names # Work around PHP *feature* to avoid *bugs* elsewhere. $name = strtr( $name, '.', '_' ); if ( isset( $arr[$name] ) ) {