Improved "if" construct

This commit is contained in:
Michael 2017-11-04 21:27:32 +00:00
parent 4831587250
commit 9c78938ca9
1 changed files with 2 additions and 4 deletions

View File

@ -521,10 +521,8 @@ function settings_post(App $a) {
return;
}
if ($timezone != $a->user['timezone']) {
if (strlen($timezone)) {
date_default_timezone_set($timezone);
}
if (($timezone != $a->user['timezone']) && strlen($timezone)) {
date_default_timezone_set($timezone);
}
$str_group_allow = perms2str($_POST['group_allow']);