Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Issue #627 #1262

Merged
merged 1 commit into from Apr 26, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions system/core/Loader.php
Expand Up @@ -673,7 +673,7 @@ public function add_package_path($path, $view_cascade=TRUE)

// Add config file path
$config =& $this->_ci_get_component('config');
array_unshift($config->_config_paths, $path);
array_push($config->_config_paths, $path);
}

// --------------------------------------------------------------------
Expand Down Expand Up @@ -713,7 +713,7 @@ public function remove_package_path($path = '', $remove_config_path = TRUE)
array_shift($this->_ci_model_paths);
array_shift($this->_ci_helper_paths);
array_shift($this->_ci_view_paths);
array_shift($config->_config_paths);
array_pop($config->_config_paths);
}
else
{
Expand Down