From 15f1319e4e08772f0fba22799ee87b2678bc2867 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Thu, 17 Jul 2014 11:58:35 +0200 Subject: Fix comptability with php 5.6 References: http://ellislab.com/forums/viewthread/244510/#1066558 Signed-off-by: Florian Pritz --- system/core/Common.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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]; } } -- cgit v1.2.3-24-g4f1b