Skip to content

Commit fe511d2

Browse files
author
simon
committed
Adding systeme section in config file to prevent some bugs
1 parent 2d69741 commit fe511d2

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed

changelog

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
From version 2.5.0 to 2.6.0
2+
---------------------------
3+
- MVC Connector update | #509
4+
- Dynamic locale setting (from json config file) | #474
5+
- Dynamic timezone (from json config file) | #382
6+
7+
18
From version 2.4.0 to 2.5.0
29
---------------------------
310
- introduce quickSelect option | #455

connectors/php/filemanager.class.php

+11-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,17 @@ public function __construct($extraConfig = '') {
5353
}
5454
$config = json_decode($content, true);
5555

56-
setlocale(LC_ALL, 'en_US.UTF-8'); // this would fix bug on encoding https://github.com/simogeo/Filemanager/issues/474#issuecomment-214781921 @todo make this dynamic with config json file
56+
// setting encoding to prevent bug https://github.com/simogeo/Filemanager/issues/474#issuecomment-214781921
57+
if(!isset($this->config['system']['locale']))
58+
setlocale(LC_ALL, 'en_US.UTF-8');
59+
else
60+
setlocale(LC_ALL, $this->config['system']['locale']);
61+
62+
// setting timezone to prevent bug https://github.com/simogeo/Filemanager/issues/382#issuecomment-252472891
63+
if(!isset($this->config['system']['timezone']))
64+
date_default_timezone_set('UTC');
65+
else
66+
date_default_timezone_set($this->config['system']['timezone']);
5767

5868
// Prevent following bug https://github.com/simogeo/Filemanager/issues/398
5969
$config_default['security']['uploadRestrictions'] = array();

scripts/filemanager.config.default.json

+5-1
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,10 @@
152152
"directory": "_Open.png",
153153
"default": "default.png"
154154
},
155+
"system": {
156+
"locale": "en_US.UTF-8",
157+
"timezone": "UTC"
158+
},
155159
"url": "https://github.com/simogeo/Filemanager",
156-
"version": "2.5.0"
160+
"version": "2.6.0-dev"
157161
}

0 commit comments

Comments
 (0)