diff options
| author | Nils Adermann <naderman@naderman.de> | 2007-02-08 22:11:14 +0000 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2007-02-08 22:11:14 +0000 |
| commit | 56a93bdfdddde618fe826c23c9151086f9540860 (patch) | |
| tree | 5badf493ac976a48e8de22411610affa6019e6b3 /phpBB/adm | |
| parent | 766e311ff35b486a2f01b1cb2cf4fef3df290825 (diff) | |
| download | forums-56a93bdfdddde618fe826c23c9151086f9540860.tar forums-56a93bdfdddde618fe826c23c9151086f9540860.tar.gz forums-56a93bdfdddde618fe826c23c9151086f9540860.tar.bz2 forums-56a93bdfdddde618fe826c23c9151086f9540860.tar.xz forums-56a93bdfdddde618fe826c23c9151086f9540860.zip | |
- Pruning doesn't lower user post counts anymore [Bug #7676]
- Better resync explanations in ACP
- relative link to board shouldn't result in an empty link [Bug #7762]
- allow spaces to define multiple classes [Bug #7700]
- forgot addslashes for password conversion [Bug #7530]
- adjusted get_post_data call in mcp_post to retrieve read tracking info [Bug #7538]
- fixed sorting in reports/queue by properly generating the pagination links [Bug #7666]
- send UTF-8 charset header in database_update.php [Bug #7564]
git-svn-id: file:///svn/phpbb/trunk@6974 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm')
| -rw-r--r-- | phpBB/adm/style/acp_main.html | 48 | ||||
| -rw-r--r-- | phpBB/adm/style/admin.css | 1 |
2 files changed, 43 insertions, 6 deletions
diff --git a/phpBB/adm/style/acp_main.html b/phpBB/adm/style/acp_main.html index 41d00a3b41..85a1c4a225 100644 --- a/phpBB/adm/style/acp_main.html +++ b/phpBB/adm/style/acp_main.html @@ -89,13 +89,49 @@ </table> <!-- IF S_ACTION_OPTIONS --> - <form id="stats" method="post" action="{U_ACTION}"> - <fieldset class="quick"> - <select name="action">{S_ACTION_OPTIONS}</select> - - <input class="button2" type="submit" name="submit" value="{L_SUBMIT}" /> + <fieldset> + <legend>{L_STATISTIC_RESYNC_OPTIONS}</legend> + + <form id="action_online_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_online">{L_RESET_ONLINE}</label></dt> + <dd><input class="button2" type="submit" id="action_online" name="action_online" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="online"/> + </form> + + <form id="action_date_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_date">{L_RESET_DATE}</label></dt> + <dd><input class="button2" type="submit" id="action_date" name="action_date" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="date"/> + </form> + + <form id="action_stats_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_stats">{L_RESYNC_STATS}</label><br /><span>{L_RESYNC_STATS_EXPLAIN}</span></dt> + <dd><input class="button2" type="submit" id="action_stats" name="action_stats" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="stats"/> + </form> + + <form id="action_user_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_user">{L_RESYNC_POSTCOUNTS}</label><br /><span>{L_RESYNC_POSTCOUNTS_EXPLAIN}</span></dt> + <dd><input class="button2" type="submit" id="action_user" name="action_user" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="user"/> + </form> + + <form id="action_db_track_form" method="post" action="{U_ACTION}"> + <dl> + <dt><label for="action_db_track">{L_RESYNC_POST_MARKING}</label><br /><span>{L_RESYNC_POST_MARKING_EXPLAIN}</span></dt> + <dd><input class="button2" type="submit" id="action_db_track" name="action_db_track" value="{L_RUN}" /></dd> + </dl> + <input type="hidden" name="action" value="db_track"/> + </form> </fieldset> - </form> <!-- ENDIF --> <!-- IF .log --> diff --git a/phpBB/adm/style/admin.css b/phpBB/adm/style/admin.css index 3f655663a0..b081230ee2 100644 --- a/phpBB/adm/style/admin.css +++ b/phpBB/adm/style/admin.css @@ -637,6 +637,7 @@ dt label { } dd label { + font-size:100%; white-space: nowrap; margin: 0 10px 0 0; } |
