Verfasst: 26.12.2008 20:36
Danke! Mit "tabindex" klappt es: Wieder etwas dazugelernt 

phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
if ($user->data['is_registered'] && (substr($user->page['page'], 0, 3) != 'ucp') && !$user->data['vorname])
{
meta_refresh(3, append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=profile&mode=profile_info'));
trigger_error($user->lang['TOO_SHORT_NAME']);
}
Code: Alles auswählen
<dl>
<dt><label for="user_from">{L_LOCATION}:</label></dt>
<dd><input type="text" tabindex="6" name="user_from" id="user_from" size="25" maxlength="100" value="{USER_FROM}" class="inputbox autowidth" title="{L_LOCATION}" /></dd>
</dl>
Code: Alles auswählen
<dl>
<dt><label for="user_occ">{L_OCCUPATION}:</label></dt>
<dd><input type="text" tabindex="7" name="user_occ" id="user_occ" size="25" maxlength="100" value="{user_occ}" class="inputbox autowidth" title="{L_OCCUPATION}" /></dd>
</dl>