]> git.p6c8.net - selfforum.git/commitdiff
support for fo_delete.pl
authorfox_two <>
Sun, 13 Jan 2002 19:33:27 +0000 (19:33 +0000)
committerfox_two <>
Sun, 13 Jan 2002 19:33:27 +0000 (19:33 +0000)
selfforum-cgi/shared/Template/Posting.pm

index 3fafa4a081a5edb76beef0f4b095fc371e4fd169..3f75b8bccaab18c0df689f0ce1843fe352d0ebda 100644 (file)
@@ -65,11 +65,12 @@ use base qw(Exporter);
 #
 # Return: -none-
 #
-sub print_posting_as_HTML ($$$) {
+sub print_posting_as_HTML ($$$;$) {
   my ($threadpath, $tempfile, $param) = @_;
 
   my $template = new Template $tempfile;
   my $assign = $param -> {assign};
+  my $show_deleted = $param->{showDeleted};
 
   my $view = get_view_params ({
     adminDefault => $param -> {adminDefault}
@@ -105,7 +106,8 @@ sub print_posting_as_HTML ($$$) {
       else {
         my ($mnode, $tnode) = get_message_node ($xml, 't'.$param -> {thread}, 'm'.$param -> {posting});
 
-        unless ($mnode and not $mnode->getAttribute('invisible')) {
+        # do not show if not wanted
+        if(!$mnode || ($mnode->getAttribute('invisible') && !$show_deleted)) { # and not $mnode->getAttribute('invisible')) {
           print ${$template -> scrap (
             $assign -> {errorDoc},
             { $assign -> {errorText} => $template -> insert ($assign -> {'notAvailable'}) }
@@ -257,4 +259,4 @@ sub message_as_HTML ($$$) {
 
 #
 #
-### end of Template::Posting ###################################################
\ No newline at end of file
+### end of Template::Posting ###################################################

patrick-canterino.de