Skip to content

Commit

Permalink
Fix issues bcit-ci#388 & bcit-ci#705
Browse files Browse the repository at this point in the history
(thanks to @sourcejedi, PR bcit-ci#1326 for pointing inconsistencies with RFC2616
  • Loading branch information
narfbg committed Oct 31, 2012
1 parent dee0e61 commit eb43188
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
9 changes: 5 additions & 4 deletions system/core/URI.php
Expand Up @@ -188,7 +188,7 @@ protected function _parse_request_uri()

$uri = parse_url($_SERVER['REQUEST_URI']);
$query = isset($uri['query']) ? $uri['query'] : '';
$uri = isset($uri['path']) ? $uri['path'] : '';
$uri = isset($uri['path']) ? rawurldecode($uri['path']) : '';

if (strpos($uri, $_SERVER['SCRIPT_NAME']) === 0)
{
Expand All @@ -204,7 +204,7 @@ protected function _parse_request_uri()
if (trim($uri, '/') === '' && strncmp($query, '/', 1) === 0)
{
$query = explode('?', $query, 2);
$uri = $query[0];
$uri = rawurldecode($query[0]);
$_SERVER['QUERY_STRING'] = isset($query[1]) ? $query[1] : '';
}
else
Expand Down Expand Up @@ -245,8 +245,9 @@ protected function _parse_query_string()
{
$uri = explode('?', $uri, 2);
$_SERVER['QUERY_STRING'] = isset($uri[1]) ? $uri[1] : '';
$uri = $uri[0];
$uri = rawurldecode($uri[0]);
}

$this->_reset_query_string();

return str_replace(array('//', '../'), '/', trim($uri, '/'));
Expand Down Expand Up @@ -325,7 +326,7 @@ public function _filter_uri($str)
{
// preg_quote() in PHP 5.3 escapes -, so the str_replace() and addition of - to preg_quote() is to maintain backwards
// compatibility as many are unaware of how characters in the permitted_uri_chars will be parsed as a regex pattern
if ( ! preg_match('|^['.str_replace(array('\\-', '\-'), '-', preg_quote($this->config->item('permitted_uri_chars'), '-')).']+$|i', urldecode($str)))
if ( ! preg_match('|^['.str_replace(array('\\-', '\-'), '-', preg_quote($this->config->item('permitted_uri_chars'), '|')).']+$|i', $str))
{
show_error('The URI you submitted has disallowed characters.', 400);
}
Expand Down
3 changes: 2 additions & 1 deletion user_guide_src/source/changelog.rst
Expand Up @@ -406,7 +406,8 @@ Bug fixes for 3.0
- Fixed a bug (#142) - :doc:`Form Helper <helpers/form_helper>` function ``form_dropdown()`` didn't escape HTML entities in option values.
- Fixed a bug (#50) - :doc:`Session Library <libraries/sessions>` unnecessarily stripped slashed from serialized data, making it impossible to read objects in a namespace.
- Fixed a bug (#658) - :doc:`Routing <general/routing>` wildcard **:any** didn't work as advertised and matched multiple URI segments instead of all characters within a single segment.
- Fixed a bug (#1938) - :doc:`Email <libraries/email>` where the email library removed multiple spaces inside a pre-formatted plain text message.
- Fixed a bug (#1938) - :doc:`Email Library <libraries/email>` removed multiple spaces inside a pre-formatted plain text message.
- Fixed a bug (#388, #705) - :doc:`URI Library <libraries/uri>` didn't apply URL-decoding to URI segments that it got from **REQUEST_URI** and/or **QUERY_STRING**.

Version 2.1.3
=============
Expand Down

0 comments on commit eb43188

Please sign in to comment.