]> git.p6c8.net - selfforum.git/commitdiff
now the (new) purge method of the lock file is called after removing a thread file
authorndparker <>
Fri, 27 Jul 2001 15:25:27 +0000 (15:25 +0000)
committerndparker <>
Fri, 27 Jul 2001 15:25:27 +0000 (15:25 +0000)
selfforum-cgi/shared/Arc/Archive.pm

index cc5c48b310bf440e42a031c9e103d547e818d5fd..7fe742453fefabf6b06f0d41bdcd1bbce26f811d 100644 (file)
@@ -324,7 +324,7 @@ sub append_threads ($$) {
   #
   my $saved = save_file (
     $file => create_forum_xml_string (
   #
   my $saved = save_file (
     $file => create_forum_xml_string (
-      $threads,
+      $thash,
       {
         dtd         => 'forum.dtd',
         lastMessage => 0,
       {
         dtd         => 'forum.dtd',
         lastMessage => 0,
@@ -515,12 +515,13 @@ sub cut_tail ($) {
                 delete $obsolete{$_};
               }
               else {
                 delete $obsolete{$_};
               }
               else {
-                unless (unlink ($param->{messagePath}."t$_.xml")) {
+                my $tfile = new Lock ($param->{messagePath}."t$_.xml");
+                unless (unlink ($tfile->filename)) {
                   $failed{$_} = 'warning: could not delete thread file';
                 }
                 else {
                   push @removed => $_;
                   $failed{$_} = 'warning: could not delete thread file';
                 }
                 else {
                   push @removed => $_;
-                  #file_removed ($param->{messagePath}."t$_.xml");
+                  $tfile -> purge;
                 }
               }
             }
                 }
               }
             }

patrick-canterino.de