aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2014-03-13 11:02:29 +0100
committerAndreas Fischer <bantu@phpbb.com>2014-03-13 11:02:29 +0100
commit4ecfc07e037b2a2e70eab09e7759e37ebf585de1 (patch)
treee65be004628650dacaf6cc145421e50fe7896fdc /phpBB/viewtopic.php
parent16e7a1d9315338a0cf2f048cb0fe3fd5905e182e (diff)
parentdb63d0fbf9f34f7b401d2211ea43dd25c0efcd45 (diff)
downloadforums-4ecfc07e037b2a2e70eab09e7759e37ebf585de1.tar
forums-4ecfc07e037b2a2e70eab09e7759e37ebf585de1.tar.gz
forums-4ecfc07e037b2a2e70eab09e7759e37ebf585de1.tar.bz2
forums-4ecfc07e037b2a2e70eab09e7759e37ebf585de1.tar.xz
forums-4ecfc07e037b2a2e70eab09e7759e37ebf585de1.zip
Merge pull request #2113 from nickvergessen/ticket/8041
[ticket/8041] Merge item name into "Return to" string for better translations * nickvergessen/ticket/8041: [ticket/8041] Add space/tabs after => in array list [ticket/8041] Wrap forum name, topic title and pm folder name with quotes [ticket/8041] Merge item name into "Return to" string for better translations
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index ab72b34487..596272636a 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -634,6 +634,7 @@ $template->assign_vars(array(
'S_TOPIC_ACTION' => append_sid("{$phpbb_root_path}viewtopic.$phpEx", "f=$forum_id&amp;t=$topic_id" . (($start == 0) ? '' : "&amp;start=$start")),
'S_MOD_ACTION' => append_sid("{$phpbb_root_path}mcp.$phpEx", "f=$forum_id&amp;t=$topic_id" . (($start == 0) ? '' : "&amp;start=$start") . "&amp;quickmod=1&amp;redirect=" . urlencode(str_replace('&amp;', '&', $viewtopic_url)), true, $user->session_id),
+ 'L_RETURN_TO_FORUM' => $user->lang('RETURN_TO', $topic_data['forum_name']),
'S_VIEWTOPIC' => true,
'S_DISPLAY_SEARCHBOX' => ($auth->acl_get('u_search') && $auth->acl_get('f_search', $forum_id) && $config['load_search']) ? true : false,
'S_SEARCHBOX_ACTION' => append_sid("{$phpbb_root_path}search.$phpEx"),