Code: Alles auswählen
Undefined index:
Code: Alles auswählen
Undefined index:
Code: Alles auswählen
Seite: downloads.php?view=detail&df_id=7
Datei: [ROOT]/includes/functions_awaystatus.php
Zeile: 61 [PHP Notice]
Undefined index:
Seite: portal.php?m=-137
Datei: [ROOT]/includes/functions_awaystatus.php
Zeile: 61 [PHP Notice]
Undefined index:
Seite: portal.php?style=8&m18=138
Datei: [ROOT]/includes/functions_awaystatus.php
Zeile: 61 [PHP Notice]
Undefined index:
Seite: viewforum.php?forum_uri=tutorial-base
Datei: [ROOT]/includes/functions_awaystatus.php
Zeile: 61 [PHP Notice]
Undefined index:
Code: Alles auswählen
$status['online_status'] = $opts[$status['online_status'] = false];
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file [ROOT]/viewonline.php on line 478: Undefined index:
[phpBB Debug] PHP Notice: in file [ROOT]/viewonline.php on line 479: Undefined index:
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5174: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3960)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5176: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3960)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5177: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3960)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 5178: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3960)
Code: Alles auswählen
// change $status['online_status'] to the corresponding string
$status['online_status'] = $opts[$status['online_status']];
Code: Alles auswählen
// change $status['online_status'] to the corresponding string
if ((isset($opts) && !empty($opts)) && (isset($status) && !empty($status)))
{
$status['online_status'] = $opts[$status['online_status']];
}
Code: Alles auswählen
'ONLINE_STATUS' => $opts[$row['online_status']]['opts'] . ' - ' . $row['online_status_msg'] . ' ' . parse_busy_status($row['busy_status']),
'ONLINE_STATUS_ICON' => $opts[$row['online_status']]['icon'],
Code: Alles auswählen
$user->add_lang('mods/awaystatus');
include_once($phpbb_root_path . 'includes/functions_awaystatus.' . $phpEx);
$opts = get_online_status_options();
Code: Alles auswählen
'ONLINE_STATUS' => $opts[$row['online_status']]['opts'] . ' - ' . $row['online_status_msg'] . ' ' . parse_busy_status($row['busy_status']),
'ONLINE_STATUS_ICON' => $opts[$row['online_status']]['icon'],
Code: Alles auswählen
'ONLINE_STATUS' => ((isset($opts) && !empty($opts)) && (isset($row) && !empty($row))) ? $opts[$row['online_status']]['opts'] . ' - ' . $row['online_status_msg'] . ' ' . parse_busy_status($row['busy_status']) : false,
'ONLINE_STATUS_ICON' => ((isset($opts) && !empty($opts)) && (isset($row) && !empty($row))) ? $opts[$row['online_status']]['icon'] : false,