diff options
| author | Graham Eames <grahamje@users.sourceforge.net> | 2006-06-04 15:01:35 +0000 |
|---|---|---|
| committer | Graham Eames <grahamje@users.sourceforge.net> | 2006-06-04 15:01:35 +0000 |
| commit | f3499d12518c38082c2ecf60958e7336195a941b (patch) | |
| tree | 81bc03cd08dd1b900c35022a163b6be3f6ff00ef /phpBB/includes/mcp/mcp_main.php | |
| parent | 6ba50e34d60441e3eaf6c9fe1bff95a902393c84 (diff) | |
| download | forums-f3499d12518c38082c2ecf60958e7336195a941b.tar forums-f3499d12518c38082c2ecf60958e7336195a941b.tar.gz forums-f3499d12518c38082c2ecf60958e7336195a941b.tar.bz2 forums-f3499d12518c38082c2ecf60958e7336195a941b.tar.xz forums-f3499d12518c38082c2ecf60958e7336195a941b.zip | |
Assign page titles within the mcp
git-svn-id: file:///svn/phpbb/trunk@6008 89ea8834-ac86-4346-8a33-228a782c2dd0
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: |
