Skip to content
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.

Commit

Permalink
Fix compatibility with PHP 5.6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
denzilferreira committed Jan 5, 2016
1 parent 245df38 commit 75eadd4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion system/core/Common.php
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,9 @@ function &get_config($replace = array())
}
}

return $_config[0] =& $config;
$_config[0] =& $config;
return $_config[0];
/* return $_config[0] =& $config; */
}
}

Expand Down

0 comments on commit 75eadd4

Please sign in to comment.