diff options
-rw-r--r-- | url.class | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |