Improved "if" construct
This commit is contained in:
parent
4831587250
commit
9c78938ca9
1 changed files with 2 additions and 4 deletions
|
@ -521,10 +521,8 @@ function settings_post(App $a) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($timezone != $a->user['timezone']) {
|
if (($timezone != $a->user['timezone']) && strlen($timezone)) {
|
||||||
if (strlen($timezone)) {
|
date_default_timezone_set($timezone);
|
||||||
date_default_timezone_set($timezone);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$str_group_allow = perms2str($_POST['group_allow']);
|
$str_group_allow = perms2str($_POST['group_allow']);
|
||||||
|
|
Loading…
Reference in a new issue