1
0
mirror of https://github.com/hauke68/Magallanes.git synced 2025-08-26 05:10:17 +02:00

Merge pull request #211 from MikeTralala/patch-1

The timezone should be system dependent
This commit is contained in:
Kuba Turek 2015-03-16 20:49:21 +01:00
commit b2e066a8c7

View File

@ -9,7 +9,9 @@
* file that was distributed with this source code.
*/
date_default_timezone_set('UTC');
if (empty(ini_get('date.timezone'))) {
date_default_timezone_set('UTC');
}
$baseDir = dirname(dirname(__FILE__));