diff options
author | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-10-28 19:55:50 +0100 |
---|---|---|
committer | Lukas Fleischer <archlinux@cryptocrack.de> | 2012-10-28 19:56:27 +0100 |
commit | 985a2ed49cc49f1e3be8a3699be8e1fa9c8705f4 (patch) | |
tree | c9de93241b58ebca14a5bd16dbed4f276f452691 /web | |
parent | 6897bb00979238b80d6aa3ad3741d1856ea81c6a (diff) | |
download | aur-985a2ed49cc49f1e3be8a3699be8e1fa9c8705f4.tar.gz aur-985a2ed49cc49f1e3be8a3699be8e1fa9c8705f4.tar.xz |
home.php: Remove unneeded tables
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
Diffstat (limited to 'web')
-rw-r--r-- | web/html/home.php | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/web/html/home.php b/web/html/home.php index 40ad5fe4..97de8bb6 100644 --- a/web/html/home.php +++ b/web/html/home.php @@ -100,22 +100,10 @@ $dbh = db_connect(); </form> </div> <div id="pkg-updates" class="widget box"> - <table> - <tr> - <td class="pkg-name"> - <?php updates_table($dbh); ?> - </td> - </tr> - </table> + <?php updates_table($dbh); ?> </div> <div id="pkg-stats" class="widget box"> - <table> - <tr> - <td class="pkg-name"> - <?php general_stats_table($dbh); ?> - </td> - </tr> - </table> + <?php general_stats_table($dbh); ?> </div> </div> |