************************************************************************/
// Make sure no one attempts to run this script "directly"
if (!defined('FORUM'))
exit;
?>
'pg.id, pg.title, pg.content',
'FROM' => 'pages AS pg',
'ORDER BY' => 'pg.title ASC',
);
($hook = get_hook('pr_menu_qr_get_pages')) ? eval($hook) : null;
$result = $forum_db->query_build($query) or error(__FILE__, __LINE__);
while ($cur_page = $forum_db->fetch_assoc($result))
{
echo "\n\t\t".'- '.forum_htmlencode($cur_page['title']).'
';
}
?>