From: Andrew Dolgov Date: Sun, 26 Apr 2009 12:48:23 +0000 (+0400) Subject: simplepie: do not lowercase authentication information (closes #238) X-Git-Tag: 1.3.3~16 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=2bc993b52482bb1aaf11c21fd3c68233b567f0ae;p=tt-rss.git simplepie: do not lowercase authentication information (closes #238) --- diff --git a/lib/simplepie/simplepie.inc b/lib/simplepie/simplepie.inc index 8c995bcf..abf8b34e 100644 --- a/lib/simplepie/simplepie.inc +++ b/lib/simplepie/simplepie.inc @@ -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']);