diff options
| author | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-08 01:14:14 +0000 |
|---|---|---|
| committer | Paul S. Owen <psotfx@users.sourceforge.net> | 2003-05-08 01:14:14 +0000 |
| commit | 711d90b44ff23b5bc9ad63382f0251ca8ef30491 (patch) | |
| tree | 3237f7b1dce32ee368176b8d395fdefed912be58 /phpBB/posting.php | |
| parent | bb373ebcba8d4ea15e617cd7edbfd54681712fcc (diff) | |
| download | forums-711d90b44ff23b5bc9ad63382f0251ca8ef30491.tar forums-711d90b44ff23b5bc9ad63382f0251ca8ef30491.tar.gz forums-711d90b44ff23b5bc9ad63382f0251ca8ef30491.tar.bz2 forums-711d90b44ff23b5bc9ad63382f0251ca8ef30491.tar.xz forums-711d90b44ff23b5bc9ad63382f0251ca8ef30491.zip | |
Changed forum_link_track to forum_flags for storage of additional info [ pruning related ], moved lang selection into DB, other minor changes, still working on admin_prune, per forum styling for posting
git-svn-id: file:///svn/phpbb/trunk@3989 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/posting.php')
| -rw-r--r-- | phpBB/posting.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/posting.php b/phpBB/posting.php index b6bdaa1acc..2864310d61 100644 --- a/phpBB/posting.php +++ b/phpBB/posting.php @@ -39,7 +39,6 @@ include($phpbb_root_path . 'includes/message_parser.'.$phpEx); // Start session management $user->start(); -$user->setup(); $auth->acl($user->data); // Grab only parameters needed here @@ -164,6 +163,8 @@ if ($sql != '') $topic_id = intval($row['topic_id']); $post_id = intval($row['post_id']); + $user->setup(false, $row['forum_style']); + if ($row['forum_password']) { login_forum_box($row); |
