diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-08-21 16:54:21 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-08-21 16:54:21 +0000 |
commit | f9b06a482b10a2cf665cac22b4521f8f033b8e32 (patch) | |
tree | 743b3f5acd2ec67d8df6bc2bb10d25e7e4fbc91e /modules | |
parent | 8d013b16662097d422ffcd60658ce64bc2b1fbd8 (diff) | |
download | brdo-f9b06a482b10a2cf665cac22b4521f8f033b8e32.tar.gz brdo-f9b06a482b10a2cf665cac22b4521f8f033b8e32.tar.bz2 |
- Correct caps in table headers
Diffstat (limited to 'modules')
-rw-r--r-- | modules/comment.module | 8 | ||||
-rw-r--r-- | modules/comment/comment.module | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/modules/comment.module b/modules/comment.module index 3c4d9920c..3bff35e22 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -949,10 +949,10 @@ function comment_save($id, $edit) { function comment_admin_overview($status = 0) { $header = array( - array("data" => t("Subject"), "field" => "subject"), - array("data" => t("Author"), "field" => "u.name"), - array("data" => t("Status"), "field" => "status"), - array("data" => t("Time"), "field" => "timestamp", "sort" => "desc"), + array("data" => t("subject"), "field" => "subject"), + array("data" => t("author"), "field" => "u.name"), + array("data" => t("status"), "field" => "status"), + array("data" => t("time"), "field" => "timestamp", "sort" => "desc"), array("data" => t("operations"), "colspan" => 2) ); diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 3c4d9920c..3bff35e22 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -949,10 +949,10 @@ function comment_save($id, $edit) { function comment_admin_overview($status = 0) { $header = array( - array("data" => t("Subject"), "field" => "subject"), - array("data" => t("Author"), "field" => "u.name"), - array("data" => t("Status"), "field" => "status"), - array("data" => t("Time"), "field" => "timestamp", "sort" => "desc"), + array("data" => t("subject"), "field" => "subject"), + array("data" => t("author"), "field" => "u.name"), + array("data" => t("status"), "field" => "status"), + array("data" => t("time"), "field" => "timestamp", "sort" => "desc"), array("data" => t("operations"), "colspan" => 2) ); |