Verfasst: 22.12.2006 08:06
Hi,
der Fehler liegt bei Dir
Da hast Du bestimmt beim Einbau einen Fehler gemacht.
Der Code:
ist so syntaktisch falsch und erzeugt den Fehler.
Wenn man die Anleitung GENAU durchgeht:
Sollte DAS herauskommen:
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');