glenscott/url-normalizer

missing : before port

echeese opened this issue · 1 comments

I managed to fix it by adding
if ( $this->port ) { $this->port = ':' . $this->port; } after $this->schemeBasedNormalization();

Thanks for the bug report. I've just committed a change that fixes this, along with a test case to confirm.