diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-22 18:48:46 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2006-03-22 18:48:46 +0000 |
commit | 22063e974adda03672656edbcd879d63122512c1 (patch) | |
tree | 9d807d66242ac572f4e735a335a1026741daf7bf /phpBB/adm/style | |
parent | 654a35c653bd92409e0dbaee714cb0ee4e9d45ae (diff) | |
download | forums-22063e974adda03672656edbcd879d63122512c1.tar forums-22063e974adda03672656edbcd879d63122512c1.tar.gz forums-22063e974adda03672656edbcd879d63122512c1.tar.bz2 forums-22063e974adda03672656edbcd879d63122512c1.tar.xz forums-22063e974adda03672656edbcd879d63122512c1.zip |
- hopefully fixed inactive create forum input field + button for safari 2.0.2 (floating issue?)
- updated format_date calls (fixed ancient calls)
- fixed newest username setting for activating users through the admin panel
git-svn-id: file:///svn/phpbb/trunk@5701 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_forums.html | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/phpBB/adm/style/acp_forums.html b/phpBB/adm/style/acp_forums.html index 73e3f65f1c..8bb1954a5c 100644 --- a/phpBB/adm/style/acp_forums.html +++ b/phpBB/adm/style/acp_forums.html @@ -321,25 +321,25 @@ </table> <!-- ENDIF --> - <form id="forums" method="post" action="{U_ACTION}"> + <form id="fselect" method="post" action="{U_SEL_ACTION}"> - <fieldset class="quick" style="float: left;"> - <input type="hidden" name="action" value="add" /> + <fieldset class="quick"> + {L_SELECT_FORUM}: <select name="parent_id" onchange="if(this.options[this.selectedIndex].value != -1){ this.form.submit(); }">{FORUM_BOX}</select> - <input type="text" name="forum_name" /> - <input class="button2" name="addforum" type="submit" value="{L_CREATE_FORUM}" /> + <input class="button2" type="submit" value="{L_GO}" /> </fieldset> - + </form> - <form id="fselect" method="post" action="{U_SEL_ACTION}"> + <form id="forums" method="post" action="{U_ACTION}"> <fieldset class="quick"> - {L_SELECT_FORUM}: <select name="parent_id" onchange="if(this.options[this.selectedIndex].value != -1){ this.form.submit(); }">{FORUM_BOX}</select> + <input type="hidden" name="action" value="add" /> - <input class="button2" type="submit" value="{L_GO}" /> + <input type="text" name="forum_name" value="" /> + <input class="button2" name="addforum" type="submit" value="{L_CREATE_FORUM}" /> </fieldset> - + </form> <!-- ENDIF --> |