mirror of
https://github.com/mailcow/mailcow-dockerized.git
synced 2026-01-23 02:14:26 +00:00
commit
1994b9895b
1 changed files with 2 additions and 2 deletions
|
|
@ -388,8 +388,8 @@ function customize($_action, $_item, $_data = null) {
|
|||
break;
|
||||
case 'custom_login':
|
||||
try {
|
||||
$custom_login = ($custom_login = $redis->get('CUSTOM_LOGIN')) ? $custom_login : array();
|
||||
return json_decode($custom_login, true);
|
||||
$custom_login = $redis->get('CUSTOM_LOGIN');
|
||||
return $custom_login ? json_decode($custom_login, true) : array();
|
||||
}
|
||||
catch (RedisException $e) {
|
||||
$_SESSION['return'][] = array(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue