From f1e90df660ab4621ea5ff6d8687e9e247983cfee Mon Sep 17 00:00:00 2001 From: Kijin Sung Date: Wed, 27 Jan 2016 17:51:59 +0900 Subject: [PATCH] Fix syntax incompatible with PHP 5.3 --- common/framework/lang.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/common/framework/lang.php b/common/framework/lang.php index 2464fa831..af5f3ac99 100644 --- a/common/framework/lang.php +++ b/common/framework/lang.php @@ -10,14 +10,14 @@ class Lang /** * Instances are stored here. */ - protected static $_instances = []; + protected static $_instances = array(); /** * Configuration. */ protected $_language; - protected $_loaded_directories = []; - protected $_loaded_files = []; + protected $_loaded_directories = array(); + protected $_loaded_files = array(); /** * This method returns the cached instance of a language.