mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/13962] MCP Queue dropdown for forum selection
PHPBB3-13962
This commit is contained in:
parent
d43da6cee9
commit
2ec5c5de17
1 changed files with 1 additions and 1 deletions
|
@ -404,7 +404,7 @@ class mcp_queue
|
||||||
$forum_options = '<option value="0"' . (($forum_id == 0) ? ' selected="selected"' : '') . '>' . $user->lang['ALL_FORUMS'] . '</option>';
|
$forum_options = '<option value="0"' . (($forum_id == 0) ? ' selected="selected"' : '') . '>' . $user->lang['ALL_FORUMS'] . '</option>';
|
||||||
foreach ($forum_list_approve as $row)
|
foreach ($forum_list_approve as $row)
|
||||||
{
|
{
|
||||||
$forum_options .= '<option value="' . $row['forum_id'] . '"' . (($forum_id == $row['forum_id']) ? ' selected="selected"' : '') . '>' . str_repeat(' ', $row['padding']) . $row['forum_name'] . '</option>';
|
$forum_options .= '<option value="' . $row['forum_id'] . '"' . (($forum_id == $row['forum_id']) ? ' selected="selected"' : '') . '>' . str_repeat(' ', $row['padding']) . truncate_string($row['forum_name'], 30, 255, false, $user->lang['ELLIPSIS']) . '</option>';
|
||||||
}
|
}
|
||||||
|
|
||||||
$sort_days = $total = 0;
|
$sort_days = $total = 0;
|
||||||
|
|
Loading…
Add table
Reference in a new issue