summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPhil Sturgeon <email@philsturgeon.co.uk>2011-01-13 14:04:36 +0100
committerPhil Sturgeon <email@philsturgeon.co.uk>2011-01-13 14:04:36 +0100
commit87a5cf3ee39cb76ff2ba50d49ca5d03588a3fd9f (patch)
treedb4d7b066d29ab8eec29138a399d61ce6fae36aa
parentb298374c1628f2768da0fc98308adb9ac761e854 (diff)
parent3cf4c4eb3e25459763fef023435e3157178a08f5 (diff)
Automated merge with http://hg.ellislab.com/CodeIgniter-Reactor
-rw-r--r--application/config/config.php2
-rw-r--r--system/core/URI.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/application/config/config.php b/application/config/config.php
index a844f71ab..5c6cc0aec 100644
--- a/application/config/config.php
+++ b/application/config/config.php
@@ -188,7 +188,7 @@ $config['log_threshold'] = 0;
|--------------------------------------------------------------------------
|
| Leave this BLANK unless you would like to set something other than the default
-| system/logs/ folder. Use a full server path with trailing slash.
+| application/logs/ folder. Use a full server path with trailing slash.
|
*/
$config['log_path'] = '';
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());
}
}