diff options
author | Andreas Fischer <bantu@phpbb.com> | 2011-11-13 21:13:22 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2011-11-13 21:13:22 +0100 |
commit | 9553b2239c7de8359489630943d8a4d0ab383478 (patch) | |
tree | e494c9f51925f5b805c2ba854660d3f48ea4eeea /phpBB/includes | |
parent | 0a5d2a84d158e23b1d2e724d569c183bb049892e (diff) | |
parent | edd5866a6ed4325a6d1df728842c310d7da407fd (diff) | |
download | forums-9553b2239c7de8359489630943d8a4d0ab383478.tar forums-9553b2239c7de8359489630943d8a4d0ab383478.tar.gz forums-9553b2239c7de8359489630943d8a4d0ab383478.tar.bz2 forums-9553b2239c7de8359489630943d8a4d0ab383478.tar.xz forums-9553b2239c7de8359489630943d8a4d0ab383478.zip |
Merge remote-tracking branch 'igorw/ticket/10087' into develop-olympus
* igorw/ticket/10087:
[ticket/10087] Organize bans in acp_baninto optgroups
Diffstat (limited to 'phpBB/includes')
-rw-r--r-- | phpBB/includes/acp/acp_ban.php | 34 |
1 files changed, 29 insertions, 5 deletions
diff --git a/phpBB/includes/acp/acp_ban.php b/phpBB/includes/acp/acp_ban.php index a7ea57b753..f8af1b86e1 100644 --- a/phpBB/includes/acp/acp_ban.php +++ b/phpBB/includes/acp/acp_ban.php @@ -175,12 +175,21 @@ class acp_ban } $result = $db->sql_query($sql); - $banned_options = ''; + $banned_options = $excluded_options = array(); $ban_length = $ban_reasons = $ban_give_reasons = array(); while ($row = $db->sql_fetchrow($result)) { - $banned_options .= '<option' . (($row['ban_exclude']) ? ' class="sep"' : '') . ' value="' . $row['ban_id'] . '">' . $row[$field] . '</option>'; + $option = '<option value="' . $row['ban_id'] . '">' . $row[$field] . '</option>'; + + if ($row['ban_exclude']) + { + $excluded_options[] = $option; + } + else + { + $banned_options[] = $option; + } $time_length = ($row['ban_end']) ? ($row['ban_end'] - $row['ban_start']) / 60 : 0; @@ -241,11 +250,26 @@ class acp_ban } } + $options = ''; + if ($excluded_options) + { + $options .= '<optgroup label="' . $user->lang['OPTIONS_EXCLUDED'] . '">'; + $options .= implode('', $excluded_options); + $options .= '</optgroup>'; + } + + if ($banned_options) + { + $options .= '<optgroup label="' . $user->lang['OPTIONS_BANNED'] . '">'; + $options .= implode('', $banned_options); + $options .= '</optgroup>'; + } + $template->assign_vars(array( 'S_BAN_END_OPTIONS' => $ban_end_options, - 'S_BANNED_OPTIONS' => ($banned_options) ? true : false, - 'BANNED_OPTIONS' => $banned_options) - ); + 'S_BANNED_OPTIONS' => ($banned_options || $excluded_options) ? true : false, + 'BANNED_OPTIONS' => $options, + )); } } |