Seite 1 von 1

Birthday 1.5.9em kein Eingabefeld

Verfasst: 10.02.2007 09:16
von kette20
Hi ich hab nen kleines Problem, hab den Birthday mod eingebaut bekomme aber kein eingabefeld im Profil, Es steht zwar Geburtstag , aber dahinter ist kein Feld


thx im vorraus

Verfasst: 10.02.2007 09:26
von Stefane
Guten Morgen,
um welche MOD handelt es sich genau... Link?

Dann poste mal bitte die usercp_register.php und die profile_add_body.tpl, damit wir mal rein schauen können. (KB:81)

ok hier ists

Verfasst: 10.02.2007 14:40
von kette20

Verfasst: 28.02.2007 08:04
von kette20
Na keiner ne ahnung????

Verfasst: 28.02.2007 08:26
von Dr.Death
Moin,

SUCHE in der usercp_register.php

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', 'S_BIRTHDAY' => $s_birthday,
		'BIRTHDAY_REQUIRED' => ($board_config['birthday_required']) ? '*' : '', 'confirm_code' => 'confirm_code');
ERSETZE mit:

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');
SUCHE: ( ca. Zeile 1200 - 1203 )

Code: Alles auswählen

		'OCCUPATION' => $occupation,
		'INTERESTS' => $interests,
		'LOCATION' => $location,
		'WEBSITE' => $website,
DANACH einfügen:

Code: Alles auswählen

// Start add - Birthday MOD
		'S_BIRTHDAY' => $s_birthday,
		'BIRTHDAY_REQUIRED' => ($board_config['birthday_required']) ? '*' : '',
// End add - Birthday MOD