[Codestriker-commits] CVS update: codestriker/bin CodestrikerClient.pm
                
                Brought to you by:
                
                    sits
                    
                
            
            
        
        
        
    | 
      
      
      From: <si...@us...> - 2005-10-05 23:23:52
      
     | 
| Created Codestriker topic at: http://codestriker.sourceforge.net/cgi-bin/codestriker.pl?topic=3821090&action=view User: sits Date: 05/10/05 16:23:07 Modified: . CHANGELOG bin CodestrikerClient.pm Log: * Temporary files were not being deleted within the CodestrikerClient.pm module (used for auto-creation of topics on CVS commits). Reported by Martin Apel <Mar...@so...>. Index: CHANGELOG =================================================================== RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v retrieving revision 1.176 retrieving revision 1.177 diff -u -r1.176 -r1.177 --- CHANGELOG 5 Oct 2005 07:56:09 -0000 1.176 +++ CHANGELOG 5 Oct 2005 23:23:06 -0000 1.177 @@ -10,6 +10,10 @@ * Comments with '\' characters are now displayed correctly in all cases within the tooltip window. +* Temporary files were not being deleted within the + CodestrikerClient.pm module (used for auto-creation of topics on CVS + commits). Reported by Martin Apel <Mar...@so...>. + Version 1.9.1 * Correct problem introduced in 1.9.0 release where the email address Index: CodestrikerClient.pm =================================================================== RCS file: /cvsroot/codestriker/codestriker/bin/CodestrikerClient.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- CodestrikerClient.pm 3 Nov 2004 21:52:30 -0000 1.3 +++ CodestrikerClient.pm 5 Oct 2005 23:23:07 -0000 1.4 @@ -63,6 +63,9 @@ Content_Type => 'form-data', Content => $content)); + # Remove the temporary file. + unlink $tempfile_filename; + # Indicate if the operation was successful. my $response_content = $response->content; my $rc = $response_content =~ /Topic URL: \<A HREF=\"(.*)\"/i; |