handle post status "archived"

This commit is contained in:
Colin Kuskie 2005-03-22 04:10:35 +00:00
parent fbe303ea26
commit d1c12a1e08
2 changed files with 8 additions and 2 deletions

View file

@ -336,6 +336,8 @@ sub getStatus {
return WebGUI::International::get('denied','Post');
} elsif ($status eq "pending") {
return WebGUI::International::get('pending','Post');
} elsif ($status eq "archived") {
return WebGUI::International::get('archived','Post');
}
}

View file

@ -196,7 +196,7 @@ A URL to edit this Post.
<p>
<b>status</b><br>
The status of this Post, typically "Approved", "Denied", or "Pending".
The status of this Post, typically "Approved", "Denied", "Pending" or "Archived".
<p>
<b>approve.url</b><br>
@ -280,7 +280,7 @@ The name of this attachment.
</blockquote>
|,
lastUpdated => 1111447237,
lastUpdated => 1111465141,
},
'approved' => {
@ -298,6 +298,10 @@ The name of this attachment.
lastUpdated => 1031514049
},
'archived' => {
message => q|Archived|,
lastUpdated => 1111464988,
},
};