885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
|
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
|
-
+
|
style_submenu_element("Complete Thread", "%R/%s/%s?t=a", g.zPath, zName);
forum_display_history(froot, fpid, 1);
}else{
style_submenu_element("Chronological", "%R/%s/%s?t=c", g.zPath, zName);
style_submenu_element("Unformatted", "%R/%s/%s?t=r", g.zPath, zName);
forum_display_hierarchical(froot, fpid);
}
style_emit_script_builtin(0, 0, ":forum.js");
style_emit_script_bundle("forum.js");
style_footer();
}
/*
** Return true if a forum post should be moderated.
*/
static int forum_need_moderation(void){
|