aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRMcGirr83 <rmcgirr83@gmail.com>2015-06-23 11:46:26 -0400
committerRMcGirr83 <rmcgirr83@gmail.com>2015-06-23 13:26:47 -0400
commit2ec5c5de171f85d4c88c2cc82712bdbed58d4236 (patch)
tree90915e14c6c1c8d9a32b241d844651147b729ddd
parentd43da6cee93c9caff133edd754756db9550520da (diff)
downloadforums-2ec5c5de171f85d4c88c2cc82712bdbed58d4236.tar
forums-2ec5c5de171f85d4c88c2cc82712bdbed58d4236.tar.gz
forums-2ec5c5de171f85d4c88c2cc82712bdbed58d4236.tar.bz2
forums-2ec5c5de171f85d4c88c2cc82712bdbed58d4236.tar.xz
forums-2ec5c5de171f85d4c88c2cc82712bdbed58d4236.zip
[ticket/13962] MCP Queue dropdown for forum selection
PHPBB3-13962
-rw-r--r--phpBB/includes/mcp/mcp_queue.php2
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('&nbsp; &nbsp;', $row['padding']) . $row['forum_name'] . '</option>';
+ $forum_options .= '<option value="' . $row['forum_id'] . '"' . (($forum_id == $row['forum_id']) ? ' selected="selected"' : '') . '>' . str_repeat('&nbsp; &nbsp;', $row['padding']) . truncate_string($row['forum_name'], 30, 255, false, $user->lang['ELLIPSIS']) . '</option>';
}
$sort_days = $total = 0;