의 미러
https://github.com/friendica/friendica
synced 2025-09-07 21:21:52 +02:00
Improved "if" construct
This commit is contained in:
부모
4831587250
커밋
9c78938ca9
1개의 변경된 파일과 2개의 추가작업 그리고 4개의 파일을 삭제
|
@ -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']);
|
||||
|
|
불러오는 중…
테이블 추가
Add a link
Reference in a new issue