Skip to content

Commit

Permalink
[tmhOAuth] Removed strtolower() when preparing URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
uzyn committed Jun 9, 2012
1 parent bab7819 commit f049aa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Vendor/tmhOAuth/tmhOAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ private function prepare_url($url) {
|| ($scheme == 'http' && $port != '80')) {
$host = "$host:$port";
}
$this->url = strtolower("$scheme://$host$path");
$this->url = "$scheme://$host$path";
}

/**
Expand Down

0 comments on commit f049aa5

Please sign in to comment.