diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-04-25 11:20:13 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-04-25 11:20:13 -0500 |
commit | 1a16ee4cb270f81ebeb8697e4bffaaa305010116 (patch) | |
tree | 05522d0e9042fe759e5996b2c148cf7a0810cbff /phpBB/includes/acp/acp_prune.php | |
parent | ee457e584c66938cc521eecf0ec303a81c536896 (diff) | |
download | forums-1a16ee4cb270f81ebeb8697e4bffaaa305010116.tar forums-1a16ee4cb270f81ebeb8697e4bffaaa305010116.tar.gz forums-1a16ee4cb270f81ebeb8697e4bffaaa305010116.tar.bz2 forums-1a16ee4cb270f81ebeb8697e4bffaaa305010116.tar.xz forums-1a16ee4cb270f81ebeb8697e4bffaaa305010116.zip |
[ticket/11236] Do not require group selection in prune users
PHPBB3-11236
Diffstat (limited to 'phpBB/includes/acp/acp_prune.php')
-rw-r--r-- | phpBB/includes/acp/acp_prune.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_prune.php b/phpBB/includes/acp/acp_prune.php index e43f1558b1..dc0f9a345f 100644 --- a/phpBB/includes/acp/acp_prune.php +++ b/phpBB/includes/acp/acp_prune.php @@ -331,7 +331,7 @@ class acp_prune $s_find_active_time .= '<option value="' . $key . '">' . $value . '</option>'; } - $s_group_list = ''; + $s_group_list = '<option value="0"></option>'; $sql = 'SELECT group_id, group_name FROM ' . GROUPS_TABLE . ' WHERE group_type <> ' . GROUP_SPECIAL . ' |