Fix regression in even sizing of diff columns; forgot to restore a couple bits I...
authorBrion Vibber <brion@users.mediawiki.org>
Wed, 16 May 2007 13:59:23 +0000 (13:59 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Wed, 16 May 2007 13:59:23 +0000 (13:59 +0000)
includes/DifferenceEngine.php

index 7c5518b..e8c8b2f 100644 (file)
@@ -488,10 +488,10 @@ CONTROL;
                   $ntitle = '<span class="history-deleted">'.$ntitle.'</span>';
                }
                $header = "
-                       <table border='0' cellpadding='0' cellspacing='4' class='diff'>
+                       <table border='0' width='98%' cellpadding='0' cellspacing='4' class='diff'>
                        <tr>
-                               <td colspan='2' align='center' class='diff-otitle'>{$otitle}</td>
-                               <td colspan='2' align='center' class='diff-ntitle'>{$ntitle}</td>
+                               <td colspan='2' width='50%' align='center' class='diff-otitle'>{$otitle}</td>
+                               <td colspan='2' width='50%' align='center' class='diff-ntitle'>{$ntitle}</td>
                        </tr>
                ";