[Rt-commit] r8517 - in rt/branches/3.7-EXPERIMENTAL-TUNIS: lib/RT/Crypt

sartak at bestpractical.com sartak at bestpractical.com
Mon Aug 13 15:14:35 EDT 2007


Author: sartak
Date: Mon Aug 13 15:14:34 2007
New Revision: 8517

Modified:
   rt/branches/3.7-EXPERIMENTAL-TUNIS/   (props changed)
   rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Crypt/GnuPG.pm

Log:
 r37371 at gorgoroth:  sartak | 2007-08-13 15:14:20 -0400
 typo fix


Modified: rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Crypt/GnuPG.pm
==============================================================================
--- rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Crypt/GnuPG.pm	(original)
+++ rt/branches/3.7-EXPERIMENTAL-TUNIS/lib/RT/Crypt/GnuPG.pm	Mon Aug 13 15:14:34 2007
@@ -705,14 +705,14 @@
     if ( $args{'Sign'} && !$args{'Encrypt'} ) {
         $entity->make_multipart;
         $entity->attach(
-            Type     => 'application/octeat-stream',
+            Type     => 'application/octet-stream',
             Path     => $tmp_fn,
             Filename => "$filename.sig",
             Disposition => 'attachment',
         );
     } else {
         $entity->bodyhandle( new MIME::Body::File $tmp_fn );
-        $entity->effective_type('application/octeat-stream');
+        $entity->effective_type('application/octet-stream');
         $args{'Data'}->head->mime_attr( $_ => "$filename.pgp" )
             foreach (qw(Content-Type.name Content-Disposition.filename));
 


More information about the Rt-commit mailing list