Merge branch 'bugfix/php54-empty-compatibility' into 'develop'

PHP5.4 compatibility for empty() function.



See merge request !137
This commit is contained in:
Olivier Perez 2016-07-07 15:11:14 +02:00
parent 0cf52c8461
commit e642d1e35c
1 changed files with 2 additions and 2 deletions

View File

@ -124,14 +124,14 @@ if (extension_loaded('openssl')) {
}
// Datetime
if (!empty(ini_get('date.timezone'))) {
$timezone = ini_get('date.timezone');
if (!empty($timezone)) {
$messages[] = new Message('info', __('Check','date.timezone is set.'));
} else {
$messages[] = new Message('warning', __('Check','Consider setting the date.timezone in php.ini.'));
}
// The percentage of steps needed to be ready to launch the application
$errors = 0;
$warnings = 0;