summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--index.php4
-rw-r--r--system/core/Loader.php2
2 files changed, 3 insertions, 3 deletions
diff --git a/index.php b/index.php
index 380d1017b..ad98013ca 100644
--- a/index.php
+++ b/index.php
@@ -211,7 +211,7 @@ if (defined('ENVIRONMENT'))
// The path to the "application" folder
if (is_dir($application_folder))
{
- if (($_temp = realpath($system_path)) !== FALSE)
+ if (($_temp = realpath($application_folder)) !== FALSE)
{
$application_folder = $_temp;
}
@@ -256,7 +256,7 @@ if (defined('ENVIRONMENT'))
$view_folder = rtrim($view_folder, '/').'/';
}
- define ('VIEWPATH', $view_folder);
+ define('VIEWPATH', $view_folder);
/*
* --------------------------------------------------------------------
diff --git a/system/core/Loader.php b/system/core/Loader.php
index 09e948714..94739c74a 100644
--- a/system/core/Loader.php
+++ b/system/core/Loader.php
@@ -668,7 +668,7 @@ class CI_Loader {
* @param bool
* @return void
*/
- public function add_package_path($path, $view_cascade=TRUE)
+ public function add_package_path($path, $view_cascade = TRUE)
{
$path = rtrim($path, '/').'/';