Topic: Guests can't read closed topics--how hard?
How hard would it be to deny guests permission to read closed topics while still allowing them to read open topics?
You are not logged in. Please login or register.
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → Guests can't read closed topics--how hard?
How hard would it be to deny guests permission to read closed topics while still allowing them to read open topics?
Very easy. Open up viewtopic.php and look up:
list($subject, $closed, $sticky, $subscribers, $num_replies, $forum_id) = $db->fetch_row($result);
After that, add:
if ($closed && $cookie['is_guest'])
message($lang_common['No permission']);
Voila!
Thanks!
PunBB Forums → PunBB 1.2 modifications, plugins and integrations → Guests can't read closed topics--how hard?
Powered by PunBB, supported by Informer Technologies, Inc.