1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-01 14:30:32 +02:00

[ticket/9687] Properly support banning and fix display of ban info

PHPBB3-9687
This commit is contained in:
Marc Alexander
2023-07-04 21:23:22 +02:00
parent 43b35e1560
commit 026d66dab2
2 changed files with 10 additions and 3 deletions

View File

@@ -3163,7 +3163,7 @@ function display_ban_options($mode)
$ban_rows = $ban_manager->get_bans($mode);
$banned_options = array();
foreach ($ban_rows as $row)
foreach ($ban_rows as $ban_row)
{
$banned_options[] = '<option value="' . $ban_row['ban_id'] . '">' . $ban_row['ban_item'] . '</option>';