From 988da0f13633db4539edbdbbd56f64d2ad184202 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sat, 4 Oct 2003 09:43:28 +0000 Subject: - Fix visual bug: incorrect colspan for table. --- modules/path/path.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/path/path.module') diff --git a/modules/path/path.module b/modules/path/path.module index 4788586d0..9fda730d4 100644 --- a/modules/path/path.module +++ b/modules/path/path.module @@ -207,11 +207,11 @@ function path_overview() { } if ($pager = pager_display(NULL, 50, 0, "admin", tablesort_pager())) { - $rows[] = array(array("data" => $pager, "colspan" => 3)); + $rows[] = array(array("data" => $pager, "colspan" => "4")); } if (!$rows) { - $rows[] = array(array("data" => t("No URL aliases available."), "colspan" => "3")); + $rows[] = array(array("data" => t("No URL aliases available."), "colspan" => "4")); } return table($header, $rows); -- cgit v1.2.3