[exim-dev] [PATCH TINY] Make eximstats close table when usin…

Top Page
Delete this message
Reply to this message
Author: David Wilson
Date:  
To: exim-dev
Subject: [exim-dev] [PATCH TINY] Make eximstats close table when using user patterns.
The attached patch fixed a problem with eximstats where it opens two
<TABLE> tags but only closes one, when creating HTML output and at least
one user pattern has been specified.

Cheers,


David.

--
Never test the depth of the water with both feet.
--- eximstats.bak    2006-03-11 21:03:08.000000000 +0000
+++ eximstats    2006-03-11 21:03:27.000000000 +0000
@@ -1931,6 +1931,7 @@
   }
   if ($html) {
     print "</table>\n";
+    print "</table>\n";
   }
   print "\n";
 }