409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
Manifest *pRevised; /* Revised post artifact (may be same as pOriginal) */
int bPrivate; /* True for posts awaiting moderation */
int bSameUser; /* True if author is also the reader */
int iIndent; /* Indent level */
const char *zMimetype;/* Formatting MIME type */
/* Get the original and revised artifacts for the post. Abort if either is
* not found (e.g. shunned). */
if( p->pEditHead ){
pOriginal = manifest_get(p->pEditHead->fpid, CFTYPE_FORUM, 0);
pRevised = manifest_get(p->fpid, CFTYPE_FORUM, 0);
}else{
pOriginal = pRevised = manifest_get(p->fpid, CFTYPE_FORUM, 0);
}
if( !pOriginal || !pRevised ) return;
|
|
|
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
|
Manifest *pRevised; /* Revised post artifact (may be same as pOriginal) */
int bPrivate; /* True for posts awaiting moderation */
int bSameUser; /* True if author is also the reader */
int iIndent; /* Indent level */
const char *zMimetype;/* Formatting MIME type */
/* Get the original and revised artifacts for the post. Abort if either is
** not found (e.g. shunned). */
if( p->pEditHead ){
pOriginal = manifest_get(p->pEditHead->fpid, CFTYPE_FORUM, 0);
pRevised = manifest_get(p->fpid, CFTYPE_FORUM, 0);
}else{
pOriginal = pRevised = manifest_get(p->fpid, CFTYPE_FORUM, 0);
}
if( !pOriginal || !pRevised ) return;
|