3.06.RC3
EDIT auch unter 3.0.6.RC4
automatic_dst_2.0.1
PHP/5.3.0
Code Änderung root/includes/ucp/ucp_register.php
Finden
Code: Alles auswählen
'confirm_code' => array('string', !$config['enable_confirm'], CAPTCHA_MIN_CHARS, CAPTCHA_MAX_CHARS),
'tz' => array('num', false, -14, 14),
Ersetzen mit
Code: Alles auswählen
'confirm_code' => array('string', !$config['enable_confirm'], CAPTCHA_MIN_CHARS, CAPTCHA_MAX_CHARS),
3.0.5
Code: Alles auswählen
// We do not include the password
$s_hidden_fields = array_merge($s_hidden_fields, array(
'username' => utf8_normalize_nfc(request_var('username', '', true)),
'email' => strtolower(request_var('email', '')),
'email_confirm' => strtolower(request_var('email_confirm', '')),
'confirm_code' => request_var('confirm_code', ''),
'confirm_id' => request_var('confirm_id', ''),
'lang' => $user->lang_name,
'tz' => request_var('tz', (float) $config['board_timezone']),
));
3.0.6 ist wegefallen
'confirm_code' => array('string', !$config['enable_confirm'], CAPTCHA_MIN_CHARS, CAPTCHA_MAX_CHARS),
Code: Alles auswählen
// We do not include the password
$s_hidden_fields = array_merge($s_hidden_fields, array(
'username' => utf8_normalize_nfc(request_var('username', '', true)),
'email' => strtolower(request_var('email', '')),
'email_confirm' => strtolower(request_var('email_confirm', '')),
'lang' => $user->lang_name,
'tz' => request_var('tz', (float) $config['board_timezone']),
));
Finden
Code: Alles auswählen
'email_confirm' => strtolower(request_var('email_confirm', '')),
'lang' => $user->lang_name,
'tz' => request_var('tz', (float) $config['board_timezone']),
Ersetzen mit
Code: Alles auswählen
'email_confirm' => strtolower(request_var('email_confirm', '')),
'lang' => $user->lang_name,
EDIT Debug- und Fehlermeldung
nur bei angemeldeten Mitglieder,
nicht als Admin und oder Gast
mit Webbrowser IE8; Firefox und Opera
Code: Alles auswählen
[phpBB Debug] PHP Notice: in file /includes/automatic_dst.php on line 31: Undefined index: 1
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4258: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3493)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4260: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3493)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4261: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3493)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 4262: Cannot modify header information - headers already sent by (output started at /includes/functions.php:3493)
Gibt es dafür eine Lösung?
Gruß
Stephan