Skip to content

Commit f2d8c9a

Browse files
committed
Merge pull request bcit-ci#3303 from rogeriopradoj/fix-3302
Fix Common::get_config() error in PHP 5.6 - fix bcit-ci#3302
2 parents 3e4f0e8 + 69b02d0 commit f2d8c9a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

system/core/Common.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,8 @@ function &get_config($replace = array())
251251
}
252252
}
253253

254-
return $_config[0] =& $config;
254+
$_config[0] =& $config;
255+
return $_config[0];
255256
}
256257
}
257258

0 commit comments

Comments
 (0)