[Rt-commit] r3428 - in rt/branches/3.5-TESTING: . html/NoAuth/images

jesse at bestpractical.com jesse at bestpractical.com
Fri Jul 8 01:43:34 EDT 2005


Author: jesse
Date: Fri Jul  8 01:43:34 2005
New Revision: 3428

Modified:
   rt/branches/3.5-TESTING/   (props changed)
   rt/branches/3.5-TESTING/html/NoAuth/images/autohandler
Log:
 r22398 at hualien:  jesse | 2005-07-08 01:37:45 -0400
 * A regexp-based search and replace broke the autohandler that serves out images on misconfigured  or downlevel platforms.


Modified: rt/branches/3.5-TESTING/html/NoAuth/images/autohandler
==============================================================================
--- rt/branches/3.5-TESTING/html/NoAuth/images/autohandler	(original)
+++ rt/branches/3.5-TESTING/html/NoAuth/images/autohandler	Fri Jul  8 01:43:34 2005
@@ -17,7 +17,7 @@
 open (FILE, "<$file") || die;
 {
     local $/ = \16384;
-    $m->out($_) while (<file>);
+    $m->out($_) while (<FILE>);
     close(FILE);
 }
 $m->abort;


More information about the Rt-commit mailing list