summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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());
}
}