Hi ...
suche in der usercp_register.php
Code: Alles auswählen
'OCCUPATION' => $occupation,
'INTERESTS' =>// Start add - Birthday MOD
'S_BIRTHDAY' => $s_birthday,
'BIRTHDAY_REQUIRED' => ($board_config['birthday_required']) ? '*' : '',
// End add - Birthday MOD $interests,
'LOCATION' => $location,
ersetze mit:
Code: Alles auswählen
'OCCUPATION' => $occupation,
'INTERESTS' => $interests,
// Start add - Birthday MOD
'S_BIRTHDAY' => $s_birthday,
'BIRTHDAY_REQUIRED' => ($board_config['birthday_required']) ? '*' : '',
// End add - Birthday MOD
'LOCATION' => $location,
suche:
Code: Alles auswählen
'L_NO' => $lang['No'],
'L_INTERESTS' =>// Start add - Birthday MOD
'L_BIRTHDAY' => $lang['Birthday'],
// End add - Birthday MOD $lang['Interests'],
'L_ALWAYS_ALLOW_SMILIES' => $lang['Always_smile'],
ersetze mit:
Code: Alles auswählen
'L_NO' => $lang['No'],
'L_INTERESTS' => $lang['Interests'],
// Start add - Birthday MOD
'L_BIRTHDAY' => $lang['Birthday'],
// End add - Birthday MOD
'L_ALWAYS_ALLOW_SMILIES' => $lang['Always_smile'],
suche in der admin_board.php
Code: Alles auswählen
"PRUNE_YES" => $prune_yes,
"PRUNE_NO" =>// Start add - Birthday MOD
"BIRTHDAY_GREETING_YES" => $birthday_greeting_yes,
"BIRTHDAY_GREETING_NO" => $birthday_greeting_no,
"BIRTHDAY_REQUIRED_YES" => $birthday_required_yes,
"BIRTHDAY_REQUIRED_NO" => $birthday_required_no,
"MAX_USER_AGE" => $new['max_user_age'],
"MIN_USER_AGE" => $new['min_user_age'],
"BIRTHDAY_LOOKFORWARD" => $new['birthday_check_day'],
// End add - Birthday MOD $prune_no,
"HTML_TAGS" => $html_tags,
ersetze mit:
Code: Alles auswählen
"PRUNE_YES" => $prune_yes,
"PRUNE_NO" => $prune_no,
// Start add - Birthday MOD
"BIRTHDAY_GREETING_YES" => $birthday_greeting_yes,
"BIRTHDAY_GREETING_NO" => $birthday_greeting_no,
"BIRTHDAY_REQUIRED_YES" => $birthday_required_yes,
"BIRTHDAY_REQUIRED_NO" => $birthday_required_no,
"MAX_USER_AGE" => $new['max_user_age'],
"MIN_USER_AGE" => $new['min_user_age'],
"BIRTHDAY_LOOKFORWARD" => $new['birthday_check_day'],
// End add - Birthday MOD
"HTML_TAGS" => $html_tags,
suche in der admin_users.php
Code: Alles auswählen
'OCCUPATION' => $occupation,
'INTERESTS' =>// Start add - Birthday MOD
'NEXT_BIRTHDAY_GREETING' => $next_birthday_greeting,
'S_BIRTHDAY' => $s_birthday,
// End add - Birthday MOD $interests,
'LOCATION' => $location,
ersetze mit:
Code: Alles auswählen
'OCCUPATION' => $occupation,
'INTERESTS' => $interests,
// Start add - Birthday MOD
'NEXT_BIRTHDAY_GREETING' => $next_birthday_greeting,
'S_BIRTHDAY' => $s_birthday,
// End add - Birthday MOD
'LOCATION' => $location,
suche:
Code: Alles auswählen
'L_NO' => $lang['No'],
'L_INTERESTS' =>// Start add - Birthday MOD
'L_BIRTHDAY' => $lang['Birthday'],
'L_NEXT_BIRTHDAY_GREETING' => $lang['Next_birthday_greeting'],
'L_NEXT_BIRTHDAY_GREETING_EXPLAIN' => $lang['Next_birthday_greeting_expain'],
// End add - Birthday MOD $lang['Interests'],
'L_ALWAYS_ALLOW_SMILIES' => $lang['Always_smile'],
ersetze mit:
Code: Alles auswählen
'L_NO' => $lang['No'],
'L_INTERESTS' => $lang['Interests'],
// Start add - Birthday MOD
'L_BIRTHDAY' => $lang['Birthday'],
'L_NEXT_BIRTHDAY_GREETING' => $lang['Next_birthday_greeting'],
'L_NEXT_BIRTHDAY_GREETING_EXPLAIN' => $lang['Next_birthday_greeting_expain'],
// End add - Birthday MOD
'L_ALWAYS_ALLOW_SMILIES' => $lang['Always_smile'],
suche in der usercp_viewprofile.php
Code: Alles auswählen
'OCCUPATION' => ( $profiledata['user_occ'] ) ? $profiledata['user_occ'] : ' ',
'INTERESTS' =>// Start add - Birthday MOD
'BIRTHDAY' => $user_birthday,
// End add - Birthday MOD ( $profiledata['user_interests'] ) ? $profiledata['user_interests'] : ' ',
'AVATAR_IMG' => $avatar_img,
ersetze mit:
Code: Alles auswählen
'OCCUPATION' => ( $profiledata['user_occ'] ) ? $profiledata['user_occ'] : ' ',
'INTERESTS' => ( $profiledata['user_interests'] ) ? $profiledata['user_interests'] : ' ',
// Start add - Birthday MOD
'BIRTHDAY' => $user_birthday,
// End add - Birthday MOD
'AVATAR_IMG' => $avatar_img,
suche:
Code: Alles auswählen
'L_OCCUPATION' => $lang['Occupation'],
'L_INTERESTS' =>// Start add - Birthday MOD
'L_BIRTHDAY' => $lang['Birthday'],
// End add - Birthday MOD $lang['Interests'],
ersetze mit:
Code: Alles auswählen
'L_OCCUPATION' => $lang['Occupation'],
'L_INTERESTS' => $lang['Interests'],
// Start add - Birthday MOD
'L_BIRTHDAY' => $lang['Birthday'],
// End add - Birthday MOD
Markus