ipbcoding.com Posted January 14, 2008 Posted January 14, 2008 I would like to see this simple feature request implemented into a future version of IPB When you click Admin CP a login screen appears. if you are logged in then the username field is already filled out. if you arent logged in then its blank i use ACP quite a bit and the majority of the time the username field is always filled in already. sometimes i will click the password field and start to enter my password but if the page hasnt fully loaded then the input fields focus is changed to the username field regardless if its empty or not and some or all of the password im inputting is entered into the username field along with whatever is in there and can get quite annoying this is the line that does this in skin_acp/IPB2_Standard/acp_skin_html/cp_skin_global.phpwindow.onload = function() { document.getElementById('namefield').focus(); } my request is, can you change that line to window.onload = function() { document.getElementById('$acpfocus').focus(); } and above it add $acpfocus = ($name == '')? 'namefield' : 'password'; this way if the username field is blank then focus goes to the username field and if its already filled out then focus goes to the password field its a simple edit which i would like to see as standard just to save me adding it on each upgrade :)
tockrock Posted January 15, 2008 Posted January 15, 2008 This happen to me sometimes to, and it annoys me so I would like to see this feature added aswell :)
JeremyStCyr Posted January 15, 2008 Posted January 15, 2008 Yea i don't see this as a bad idea, i actually never noticed that myself lol
Axel Wers Posted January 15, 2008 Posted January 15, 2008 sometimes i will click the password field and start to enter my password but if the page hasnt fully loaded then the input fields focus is changed to the username field regardless if its empty or not and some or all of the password im inputting is entered into the username field along with whatever is in there and can get quite annoying You are right, this is very annoying. It should be fixed.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.