diff options
Diffstat (limited to 'phpBB/includes/mcp/mcp_main.php')
-rw-r--r-- | phpBB/includes/mcp/mcp_main.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/includes/mcp/mcp_main.php b/phpBB/includes/mcp/mcp_main.php index 60ff2cf9d3..3f54a1edec 100644 --- a/phpBB/includes/mcp/mcp_main.php +++ b/phpBB/includes/mcp/mcp_main.php @@ -135,6 +135,7 @@ class mcp_main mcp_front_view($id, $mode, $action); $this->tpl_name = 'mcp_front'; + $this->page_title = 'MCP_MAIN'; break; case 'forum_view': @@ -157,6 +158,7 @@ class mcp_main mcp_forum_view($id, $mode, $action, $forum_info); $this->tpl_name = 'mcp_forum'; + $this->page_title = 'MCP_MAIN_FORUM_VIEW'; break; case 'topic_view': @@ -165,6 +167,7 @@ class mcp_main mcp_topic_view($id, $mode, $action); $this->tpl_name = 'mcp_topic'; + $this->page_title = 'MCP_MAIN_TOPIC_VIEW'; break; case 'post_details': @@ -180,6 +183,7 @@ class mcp_main { $this->tpl_name = 'mcp_post'; } + $this->page_title = 'MCP_MAIN_POST_DETAILS'; break; default: |