PHP5.4 compatibility for empty() function.

This commit is contained in:
Antonin 2016-07-07 12:29:16 +02:00
parent 3181204228
commit c88d4daf3c

View File

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