diff options
Diffstat (limited to 'system')
-rw-r--r-- | system/core/Common.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/system/core/Common.php b/system/core/Common.php index 9f489b3c0..4bf8a9ef5 100644 --- a/system/core/Common.php +++ b/system/core/Common.php @@ -259,7 +259,8 @@ if ( ! function_exists('get_config')) } } - return $_config[0] =& $config; + $_config[0] =& $config; + return $_config[0]; } } |