mirror of
https://github.com/torrentpier/torrentpier
synced 2025-08-21 13:54:02 -07:00
Fix empty birthday list.
This commit is contained in:
parent
5ddd79a84d
commit
0c09d969b0
3 changed files with 4 additions and 4 deletions
|
@ -46,7 +46,7 @@ if ($logged_in) {
|
|||
// Online userlist
|
||||
if (defined('SHOW_ONLINE') && SHOW_ONLINE) {
|
||||
$online_full = !empty($_REQUEST['online_full']);
|
||||
$online_list = ($online_full) ? 'online_' . $userdata['user_lang'] : 'online_short_' . $userdata['user_lang'];
|
||||
$online_list = $online_full ? 'online_' . $userdata['user_lang'] : 'online_short_' . $userdata['user_lang'];
|
||||
|
||||
${$online_list} = array(
|
||||
'stat' => '',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue