summaryrefslogtreecommitdiffstats
path: root/system/core/URI.php
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2012-04-26 23:13:31 +0200
committerPhil Sturgeon <email@philsturgeon.co.uk>2012-04-26 23:13:31 +0200
commitcdfbd5281e4dec7278a07943832c2590c1141eb3 (patch)
tree207cbf75e1783db8c6d05ab2ab1f179fce56efc8 /system/core/URI.php
parent1991379f11af083675b60979c5d9f2a9bba213a4 (diff)
Fixed issue #122 - ruri_string() in subdirs.
Diffstat (limited to 'system/core/URI.php')
-rwxr-xr-xsystem/core/URI.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/system/core/URI.php b/system/core/URI.php
index 48bb7ae3c..17300df07 100755
--- a/system/core/URI.php
+++ b/system/core/URI.php
@@ -641,10 +641,10 @@ class CI_URI {
*/
public function ruri_string()
{
- return '/'.implode('/', $this->rsegment_array());
+ return implode('/', $this->rsegment_array());
}
}
/* End of file URI.php */
-/* Location: ./system/core/URI.php */
+/* Location: ./system/core/URI.php */ \ No newline at end of file