mirror of
https://github.com/slawkens/myaac.git
synced 2025-10-21 04:53:28 +02:00
shorten some expressions with ??
This commit is contained in:
@@ -63,10 +63,10 @@ if($show_form) {
|
||||
}
|
||||
|
||||
$twig->display('account.change_info.html.twig', array(
|
||||
'countries' => isset($countries) ? $countries : [],
|
||||
'countries' => $countries ?? [],
|
||||
'account_rlname' => $account_rlname,
|
||||
'account_location' => $account_location,
|
||||
'account_country' => isset($account_country) ? $account_country : ''
|
||||
'account_country' => $account_country ?? ''
|
||||
));
|
||||
}
|
||||
?>
|
||||
|
Reference in New Issue
Block a user