Merge pull request #220 from asiermarques/asiermarques-patch-1

Fixing a little bug in php<5.5
This commit is contained in:
Kuba Turek 2015-04-16 10:01:15 +02:00
commit 132539da91

View file

@ -8,8 +8,8 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
if (empty(ini_get('date.timezone'))) {
$timezone = ini_get('date.timezone');
if (empty($timezone)) {
date_default_timezone_set('UTC');
}