Topic: Problem with new user group - missing topics

Hi,

I have a problem with new user group.
I added new group "Firmy" based on "Members" group. (The same settings)

g_id     g_title               g_user_title
1    Administrators          Administrator
2    Guest                     NULL
3    Members                 NULL
4    Moderators              Moderator
5    Firmy                      NULL


The problem is that users from new group don't see topics and posts.
User from members group see all topics and post.

http://s2.postimage.org/2npz4ltgk/image.jpg

When I change in DB in table "users" - group_id from 5 ("Firmy") to 3 ("Members") works fine.

Where there may be a problem?

Re: Problem with new user group - missing topics

Hi,

I figure out the problem.
I have on file header.php my own sql query,

$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);

with name $result, which have inpact on:

// If there are topics in this forum
if ($forum_db->num_rows($result)) {show topics} else {} 

in viewforum.php file.

PS: Topic can be closed.