458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
|
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
|
+
-
+
|
@ •
}
if( modPending ){
@ <span class="modpending">(Awaiting Moderator Approval)</span>
}
if( (tmFlags & TIMELINE_BISECT)!=0 && zType[0]=='c' ){
static Stmt bisectQuery;
db_static_prepare(&bisectQuery,
db_prepare(&bisectQuery, "SELECT seq, stat FROM bilog WHERE rid=:rid");
"SELECT seq, stat FROM bilog WHERE rid=:rid");
db_bind_int(&bisectQuery, ":rid", rid);
if( db_step(&bisectQuery)==SQLITE_ROW ){
@ <b>%s(db_column_text(&bisectQuery,1))</b>
@ (%d(db_column_int(&bisectQuery,0)))
}
db_reset(&bisectQuery);
}
|