That is interesting. I wonder if phpBB changed their database structure.
I will have to look into it. For now, you can modified this stuff yourself:
Open forum-news/classes/forums/phpBB_2.php and modify a couple of things:
Modify the names of the tables in the following to the names that you did see:
(around line 89)
Code:
$this->DB->query("SELECT tid, title, posts, starter_id, start_date, starter_name, views, forum_id FROM " . $this->DB->prefix . "topics WHERE ". $WHERE ." ORDER BY tid DESC LIMIT " . $number_to_fetch);
(around line 113)
Code:
$this->DB->query("SELECT post FROM " . $this->DB->prefix . "posts WHERE topic_id='" .$current_post['tid']. "' ORDER BY pid ASC LIMIT 1");
(around line 132)... modify the names in between ['...']
Code:
$this->POSTS[$post_count] = array(
"text" => $post_text,
"title" => $current_post['title'],
"author_name" => $current_post['starter_name'],
"author_id" => $current_post['starter_id'],
"date" => $current_post['start_date'],
"reply_num" => $current_post['posts'],
"view_num" => $current_post['views'],
"post_id" => $current_post['tid'],
"cat_id" => $current_post['forum_id'],
"author_url" => $this->get_Author_Link($current_post['starter_id']),
"post_url" => $this->get_Thread_Link($current_post['tid'])
);
I know that sounds like quite a bit, but you can probably modify all that in about five minutes. I will also take a look and see if the new phpBB version has modified the default table names or if this is just a result of PHPNuke modifying the table names. Either way, I will make sure to release a new class covering the changes.