summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-04-26 16:48:23 +0400
committerAndrew Dolgov <[email protected]>2009-04-26 16:48:23 +0400
commit2bc993b52482bb1aaf11c21fd3c68233b567f0ae (patch)
tree8d8d2747bfa5b9df4aa7c865761dbf0319fd626c /lib
parenta927fe7b2d35649d13d54354bb7038af5691d539 (diff)
simplepie: do not lowercase authentication information (closes #238)
Diffstat (limited to 'lib')
-rw-r--r--lib/simplepie/simplepie.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/simplepie/simplepie.inc b/lib/simplepie/simplepie.inc
index 8c995bcfe..abf8b34ed 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']);