142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
|
-
-
+
+
|
** Show all pending moderation request
*/
void modreq_page(void){
Blob sql;
Stmt q;
login_check_credentials();
if( !g.perm.RdWiki && !g.perm.RdTkt ){
login_needed(g.anon.RdWiki && g.anon.RdTkt);
if( !g.perm.ModWiki && !g.perm.ModTkt ){
login_needed(g.anon.ModWiki && g.anon.ModTkt);
return;
}
style_header("Pending Moderation Requests");
@ <h2>All Pending Moderation Requests</h2>
if( moderation_table_exists() ){
blob_init(&sql, timeline_query_for_www(), -1);
blob_append_sql(&sql,
|