From 37808eebe0626ae577d7db05afcf5e6536b1ea0f Mon Sep 17 00:00:00 2001 From: Christian Weber Date: Thu, 5 Apr 2007 14:53:37 +0000 Subject: don't lowercase username and password --- url.class | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/url.class b/url.class index 575f8ca..bdad756 100644 --- a/url.class +++ b/url.class @@ -47,8 +47,8 @@ function it_url($url, $options = array()) if (preg_match('#^([a-z]+):/+(?:([^:]*):([^@]*)@)?(.*)$#i', $url, $regs)) { $this->protocol = strtolower($regs[1]); - $this->user = strtolower($regs[2]); - $this->pass = strtolower($regs[3]); + $this->user = $regs[2]; + $this->pass = $regs[3]; $url = $regs[4]; } else if (ereg('^[a-z]:', $url) || ereg('^/', $url)) -- cgit v1.2.3