der Fehler liegt bei Dir

Da hast Du bestimmt beim Einbau einen Fehler gemacht.
Der Code:
Code: Alles auswählen
$strip_var_list['confirm_code'] = 'confirm_code' , 'abq_aw' => $abq_config['postvariablename'], 'idabq' => 'idabq';
Wenn man die Anleitung GENAU durchgeht:
Code: Alles auswählen
#-----[ FIND ]------------------------------------------------
$strip_var_list = array('email' => 'email', 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests', 'confirm_code' => 'confirm_code');
#-----[ IN-LINE FIND ]------------------------------------------------
'confirm_code' => 'confirm_code'
#-----[ IN-LINE AFTER, ADD ]------------------------------------------------
, 'abq_aw' => $abq_config['postvariablename'], 'idabq' => 'idabq'
Code: Alles auswählen
$strip_var_list = array('email' => 'email', 'icq' => 'icq', 'aim' => 'aim', 'msn' => 'msn', 'yim' => 'yim', 'website' => 'website', 'location' => 'location', 'occupation' => 'occupation', 'interests' => 'interests', 'confirm_code' => 'confirm_code', 'abq_aw' => $abq_config['postvariablename'], 'idabq' => 'idabq');