diff options
author | Eric Barnes <eric@ericlbarnes.com> | 2011-01-12 15:05:20 +0100 |
---|---|---|
committer | Eric Barnes <eric@ericlbarnes.com> | 2011-01-12 15:05:20 +0100 |
commit | ffdc392e2777ff8326b3fca6087d71ae96816e1b (patch) | |
tree | 4c7c2bde2d83df33678e02d965b44f207cdac799 /system/core/URI.php | |
parent | 5e04480e5a4dd1b9b639eca54f5f3adbd0b39039 (diff) |
Removed trailing slash from $this->uri->ruri_string(). Fixes #292
Diffstat (limited to 'system/core/URI.php')
-rw-r--r-- | system/core/URI.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/system/core/URI.php b/system/core/URI.php index 479a225fb..769dacd09 100644 --- a/system/core/URI.php +++ b/system/core/URI.php @@ -642,7 +642,7 @@ class CI_URI { */ function ruri_string() { - return '/'.implode('/', $this->rsegment_array()).'/'; + return '/'.implode('/', $this->rsegment_array()); } } |