[Rt-commit] [svn] r777 - in rt/trunk: . lib/RT

jesse at pallas.eruditorum.org jesse at pallas.eruditorum.org
Fri Apr 30 00:59:58 EDT 2004


Author: jesse
Date: Fri Apr 30 00:59:57 2004
New Revision: 777

Modified:
   rt/trunk/   (props changed)
   rt/trunk/configure.ac
   rt/trunk/lib/RT/Attachment_Overlay.pm
Log:
 ----------------------------------------------------------------------
 r1399 at debian:  jesse | 2004-04-30T11:59:41.354565Z
 
 Mark our configure script as comming from svn
 ----------------------------------------------------------------------
 r1400 at debian:  jesse | 2004-04-30T14:01:38.501468Z
 
 Fixed an issue that could cause multiline rt-send-cc and rt-send-bcc headers to be truncated
 ----------------------------------------------------------------------


Modified: rt/trunk/configure.ac
==============================================================================
--- rt/trunk/configure.ac	(original)
+++ rt/trunk/configure.ac	Fri Apr 30 00:59:57 2004
@@ -6,7 +6,7 @@
 
 dnl Setup autoconf
 AC_PREREQ(2.53)
-AC_INIT(RT, [3.0.9], [rt-3.0-bugs at fsck.com])
+AC_INIT(RT, [3.0.HEAD], [rt-3.0-bugs at fsck.com])
 AC_CONFIG_SRCDIR([lib/RT.pm.in])
 
 dnl Extract RT version number components

Modified: rt/trunk/lib/RT/Attachment_Overlay.pm
==============================================================================
--- rt/trunk/lib/RT/Attachment_Overlay.pm	(original)
+++ rt/trunk/lib/RT/Attachment_Overlay.pm	Fri Apr 30 00:59:57 2004
@@ -481,7 +481,7 @@
     my $self = shift;
     my $tag = shift;
     foreach my $line ($self->_SplitHeaders) {
-        if ($line =~ /^\Q$tag\E:\s+(.*)$/i) { #if we find the header, return its value
+        if ($line =~ /^\Q$tag\E:\s+(.*)$/si) { #if we find the header, return its value
             return ($1);
         }
     }


More information about the Rt-commit mailing list