Skip to content
Snippets Groups Projects
Commit fbda8fe5 authored by vogelor's avatar vogelor
Browse files

Fixed a error if the user logged in with other browser than firefox

parent 77eeb090
No related branches found
No related tags found
No related merge requests found
......@@ -238,7 +238,10 @@ function setFocus() {
if(flag)break;
}
*/
document.pageForm.username.focus();
try {
document.pageForm.username.focus();
} catch (e) {
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment