From 2f0666325ffc9f80271fb01b1e050ccb77c01926 Mon Sep 17 00:00:00 2001 From: Aaron Gong Date: Wed, 13 Jan 2016 15:59:37 +0800 Subject: [PATCH] PHP7 Fix Use __construct as constructor instead of Class name --- application/core/MY_Lang.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/core/MY_Lang.php b/application/core/MY_Lang.php index 657f7b5c3..892dc6964 100644 --- a/application/core/MY_Lang.php +++ b/application/core/MY_Lang.php @@ -3,7 +3,7 @@ class MY_Lang extends CI_Lang { - function MY_Lang() + function __construct() { parent::__construct(); }