diff options
author | Dries Buytaert <dries@buytaert.net> | 2002-12-30 16:31:55 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2002-12-30 16:31:55 +0000 |
commit | 927cb12ffb1d19fb22d7e4b49ac3135ba4960151 (patch) | |
tree | d35dd02e14a6281c7a80efdc1cb04f636d30dbab /modules | |
parent | 105eef98960c01a9974837de7fd1360e739a1433 (diff) | |
download | brdo-927cb12ffb1d19fb22d7e4b49ac3135ba4960151.tar.gz brdo-927cb12ffb1d19fb22d7e4b49ac3135ba4960151.tar.bz2 |
- Fixed small braino in the cloud module table.
Diffstat (limited to 'modules')
-rw-r--r-- | modules/cloud.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/cloud.module b/modules/cloud.module index 426cb51d7..b6dbceac3 100644 --- a/modules/cloud.module +++ b/modules/cloud.module @@ -124,7 +124,7 @@ function cloud_save($edit) { function cloud_display() { $result = db_query("SELECT * FROM site ORDER BY name"); - $header = array(t("site"), t("last update"), t("operations")); + $header = array(t("site"), t("last update"), array("data" => t("operations"), "colspan" => 2)); while ($site = db_fetch_object($result)) { $rows[] = array("<a href=\"$site->link\">$site->name</a>", ($site->timestamp ? format_interval(time() - $site->timestamp) ." ago" : "never"), la(t("edit site"), array("mod" => "cloud", "op" => "edit", "id" => $site->sid)), la(t("update site"), array("mod" => "cloud", "op" => "update", "id" => $site->sid))); } |