diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-19 18:00:10 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2005-10-19 18:00:10 +0000 |
commit | b873b37607762868580bdd21b9c90f05db168921 (patch) | |
tree | b759644207a9579a9969a36812d6e8417df45485 /phpBB/adm/admin_forums.php | |
parent | 719763dec21c431b41adb8855f6fc4cd007b418b (diff) | |
download | forums-b873b37607762868580bdd21b9c90f05db168921.tar forums-b873b37607762868580bdd21b9c90f05db168921.tar.gz forums-b873b37607762868580bdd21b9c90f05db168921.tar.bz2 forums-b873b37607762868580bdd21b9c90f05db168921.tar.xz forums-b873b37607762868580bdd21b9c90f05db168921.zip |
- updated topic tracking code
- additional changes (mostly bugfixes)
- bart, if you update your user table with the user_lastmark field, set it to the user_lastvisit value ;)
- and last but not least, introducing some bugs in ucp main front (regarding topic tracking)
git-svn-id: file:///svn/phpbb/trunk@5272 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/adm/admin_forums.php')
-rw-r--r-- | phpBB/adm/admin_forums.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/adm/admin_forums.php b/phpBB/adm/admin_forums.php index 12391d3371..5264c22bf5 100644 --- a/phpBB/adm/admin_forums.php +++ b/phpBB/adm/admin_forums.php @@ -6,6 +6,7 @@ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * +* @todo add show_active flag (& 16) */ /** @@ -1445,6 +1446,7 @@ function delete_forum_content($forum_id) REPORTS_TABLE => 're.post_id', TOPICS_WATCH_TABLE => 'tw.topic_id', TOPICS_TRACK_TABLE => 'tt.topic_id', + TOPICS_POSTED_TABLE => 'tp.topic_id', POLL_OPTIONS_TABLE => 'po.topic_id', POLL_VOTES_TABLE => 'pv.post_id' ); @@ -1515,6 +1517,7 @@ function delete_forum_content($forum_id) 'topic_id' => array( TOPICS_WATCH_TABLE, TOPICS_TRACK_TABLE, + TOPICS_POSTED_TABLE, POLL_OPTIONS_TABLE, POLL_VOTES_TABLE ) |