]> git.wh0rd.org - tt-rss.git/commitdiff
simplepie: do not lowercase authentication information (closes #238)
authorAndrew Dolgov <fox@bah.org.ru>
Sun, 26 Apr 2009 12:48:23 +0000 (16:48 +0400)
committerAndrew Dolgov <fox@bah.org.ru>
Sun, 26 Apr 2009 12:48:23 +0000 (16:48 +0400)
lib/simplepie/simplepie.inc

index 8c995bcfe23fba85e530460545dbee8485d44204..abf8b34ed28e2a314bd4db989f2925f7f0537956 100644 (file)
@@ -9010,7 +9010,7 @@ class SimplePie_Misc
                $url['scheme'] = strtolower($url['scheme']);
                if ($url['authority'] !== '')
                {
-                       $url['authority'] = strtolower($url['authority']);
+//                     $url['authority'] = strtolower($url['authority']); (tt-rss: remove as per #238)
                        $url['path'] = SimplePie_Misc::remove_dot_segments($url['path']);
                }
                return SimplePie_Misc::compress_parse_url($url['scheme'], $url['authority'], $url['path'], $url['query'], $url['fragment']);