Topic: No Forum Title

Hello,

Can somebody tell me how to make forum titles to be visible again. After modding, my forum doesn't show forum titles. To see what I mean, you can access www.vamist.com.

Thanks,
Stefan

Re: No Forum Title

Another problem is that when I want to edit a forum (in admin panel), the edit boxes are not populated with forum names and descriptions.

Re: No Forum Title

Nobody can help me?

Re: No Forum Title

I'm almost sure that the problem is here:

$result = $db->query('SELECT f.forum_name, f.redirect_url, f.moderators, f.num_topics, f.sort_by, fp.post_topics FROM '.$db->prefix.'forums AS f LEFT JOIN '.$db->prefix.'forum_perms AS fp ON (fp.forum_id=f.id AND fp.group_id='.$pun_user['g_id'].') WHERE (fp.read_forum IS NULL OR fp.read_forum=1) AND f.id='.$id) or error('Unable to fetch forum info', __FILE__, __LINE__, $db->error());

...but I can't understand this query (too little knowledge of SQL) sad

Re: No Forum Title

what mods did you install? and try backing up the modded files and putting back the original until you isolate the problem

Re: No Forum Title

Problem solved! The query was ok... I had used $cur_forum as a variable name for a custom search box and the value of the original $cur_forum was lost smile Thanks!