diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-10-04 09:43:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-10-04 09:43:28 +0000 |
commit | 988da0f13633db4539edbdbbd56f64d2ad184202 (patch) | |
tree | 8a26cf3f0978fab74d478d1fb406ad3448d9cb44 /modules/path/path.module | |
parent | 3acb5578c982912cdb4bb80300d284b67fa37274 (diff) | |
download | brdo-988da0f13633db4539edbdbbd56f64d2ad184202.tar.gz brdo-988da0f13633db4539edbdbbd56f64d2ad184202.tar.bz2 |
- Fix visual bug: incorrect colspan for table.
Diffstat (limited to 'modules/path/path.module')
-rw-r--r-- | modules/path/path.module | 4 |
1 files changed, 2 insertions, 2 deletions
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); |