Quote:
Originally posted by Sebastian
how do I get it to automatically put my username in the username field like: http://www.vbulletin.com/forum/modcp when I go there is puts my vbulletin.com username in the box and puts the cursor on the password box.
|
Look for the line that says (in vb3login.php)
PHP Code:
<td><input type="text" name="loginusername" value="" size="40" accesskey="u" /></td>
and change it to
PHP Code:
<td><input type="text" name="loginusername" value="<?php if(isset($bbuserinfo["username"]) && ($bbuserinfo["username"] != "Unregistered")) { echo $bbuserinfo["username"]; } ?>" size="40" accesskey="u" /></td>
updating zip in a while..