diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2015-06-27 11:01:47 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2015-06-27 11:01:47 +0200 |
commit | 223703039834aadb740aeec385f30ee07f0c0e50 (patch) | |
tree | cd70dfd918977ca9a11b937d90ca07fc700d7d19 /phpBB/includes/mcp | |
parent | dbd653327ce29b757f6a6184fb9f79042354a72b (diff) | |
parent | 2ec5c5de171f85d4c88c2cc82712bdbed58d4236 (diff) | |
download | forums-223703039834aadb740aeec385f30ee07f0c0e50.tar forums-223703039834aadb740aeec385f30ee07f0c0e50.tar.gz forums-223703039834aadb740aeec385f30ee07f0c0e50.tar.bz2 forums-223703039834aadb740aeec385f30ee07f0c0e50.tar.xz forums-223703039834aadb740aeec385f30ee07f0c0e50.zip |
Merge pull request #3725 from RMcGirr83/ticket/13962
[ticket/13962] MCP Queue dropdown for forum selection
Diffstat (limited to 'phpBB/includes/mcp')
-rw-r--r-- | phpBB/includes/mcp/mcp_queue.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 82c3bc9ab0..5fde63ecb4 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -404,7 +404,7 @@ class mcp_queue $forum_options = '<option value="0"' . (($forum_id == 0) ? ' selected="selected"' : '') . '>' . $user->lang['ALL_FORUMS'] . '</option>'; 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; |