header->subject); header("Last-Modified: " . date("r", $message->header->date)); $title .= ' - ' . $group . ' - ' . $subject; } include "head.inc"; // has the user read-rights on this article? if ((function_exists("npreg_group_has_read_access") && ! npreg_group_has_read_access($group)) || (function_exists("npreg_group_is_visible") && ! npreg_group_is_visible($group))) { die("access denied"); } echo '

'; echo '' . basename(getcwd()) . ' / '; echo '' . htmlspecialchars(group_display_name($group)) . ' / ' . $subject . '

'; echo ''; // Article List button echo ''; echo '
'; echo '
'; echo ''; echo ''; echo '
'; echo '
'; if (! $message) // article not found echo $text_error["article_not_found"]; else { if ($article_showthread) $thread = thread_cache_load($group); // echo "
"; message_show($group, $id, 0, $message); if ($article_showthread) message_thread($message->header->id, $group, $thread); } include "tail.inc"; ?>