diff options
| author | James Atkinson <thefinn@users.sourceforge.net> | 2001-03-07 06:53:39 +0000 |
|---|---|---|
| committer | James Atkinson <thefinn@users.sourceforge.net> | 2001-03-07 06:53:39 +0000 |
| commit | 9ef35696d2d221a1ab58886f5db94e4988833b0b (patch) | |
| tree | 6f650e1fb45438aff12cb24078683e5d7e8551b4 /phpBB/page_header.php | |
| parent | 231c945e35ea8550bf2e1acbe79e125b9e69db61 (diff) | |
| download | forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.tar forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.tar.gz forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.tar.bz2 forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.tar.xz forums-9ef35696d2d221a1ab58886f5db94e4988833b0b.zip | |
Started on posting.php, got the logic done for displaying the new topic form
git-svn-id: file:///svn/phpbb/trunk@83 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/page_header.php')
| -rw-r--r-- | phpBB/page_header.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/page_header.php b/phpBB/page_header.php index e05aeca7d1..903ed4dd69 100644 --- a/phpBB/page_header.php +++ b/phpBB/page_header.php @@ -121,7 +121,14 @@ switch($pagetype) "TOPIC_TITLE" => $topic_title)); $template->pparse("output", "header"); break; - + case 'newtopic': + $template->set_file(array("header" => "newtopic_header.tpl", + "body" => "posting_body.tpl")); + $template->set_var(array("FORUM_ID" => $forum_id, + "FORUM_NAME" => $forum_name, + "L_POSTNEWIN" => $l_postnewin)); + $template->pparse("output", "header"); + break; } ?> |
