From 2b3e470adb379e479292bd21f5f00b9c9c0e490c Mon Sep 17 00:00:00 2001 From: Chris Morgan Date: Thu, 25 Aug 2005 03:35:07 +0000 Subject: [PATCH] Fix borders in adminMaintainers in cells that have no content, they need to have   in there or they are dropped and not rendered, leaving odd spaces in the table display --- admin/adminMaintainers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin/adminMaintainers.php b/admin/adminMaintainers.php index 899db02..9d4f361 100644 --- a/admin/adminMaintainers.php +++ b/admin/adminMaintainers.php @@ -81,7 +81,7 @@ if ($_REQUEST['sub']) echo " sEmail."\">".$oUser->sRealname."\n"; $count = $oUser->getMaintainerCount(true); if($count == 0) - echo " \n"; + echo "  \n"; else if($count <= 1) echo " ".$count." app\n"; else @@ -90,7 +90,7 @@ if ($_REQUEST['sub']) $count = $oUser->getMaintainerCount(false); if($count == 0) - echo " \n"; + echo "  \n"; else if($count <= 1) echo " ".$count." version\n"; else