PDA

View Full Version : [fixed] User CP on portal.php


RS_Jelle
03-16-2006, 06:16 AM
When you try to log out using the User CP on portal.php (home), you always get an error (it's a wrong (old) log out link):
An error occurred while attempting to log you out. Click here to log out.

And please change the code of the log in box on portal.php (home):
FIND
<input type="text" class="bginput" name="vb_login_username" value="Unregistered" size="15" />
REPLACE WITH
<input type="text" class="bginput" name="vb_login_username" value="Unregistered" size="15" onfocus="if (this.value == 'Unregistered') this.value = '';" />
When you click on the user name input field, the "Unregistered" standard text will disappear automatically, so you can type your user name immediately and you don't need to remove the "Unregistered" text first. Much easier and it's only a little change :)

Developer
03-16-2006, 11:13 AM
missing during upgrade :)
i think it will be fixed imediatly

Brad
03-16-2006, 11:20 AM
Fixed :)

Developer
03-16-2006, 12:11 PM
as i said
just 7 mins :)

RS_Jelle
03-16-2006, 02:34 PM
Thanks for fixing it and adding the little bit of code :)