- Fixed translation glitch in watchdog module. Thanks Stefan.

4.3.x
Dries Buytaert 2003-10-02 08:35:33 +00:00
parent 37da83ce53
commit 51976ac134
2 changed files with 4 additions and 2 deletions

View File

@ -98,8 +98,9 @@ function watchdog_overview($type) {
}
if (!$rows) {
$rows[] = array(array("data" => t("No <i>%s</i> messages currently available.", array("%s" => $type)), "colspan" => "5"));
$rows[] = array(array("data" => t("No log messages available."), "colspan" => "5"));
}
$pager = pager_display(NULL, 50, 0, "admin", tablesort_pager());
if (!empty($pager)) {
$rows[] = array(array("data" => $pager, "colspan" => "5"));

View File

@ -98,8 +98,9 @@ function watchdog_overview($type) {
}
if (!$rows) {
$rows[] = array(array("data" => t("No <i>%s</i> messages currently available.", array("%s" => $type)), "colspan" => "5"));
$rows[] = array(array("data" => t("No log messages available."), "colspan" => "5"));
}
$pager = pager_display(NULL, 50, 0, "admin", tablesort_pager());
if (!empty($pager)) {
$rows[] = array(array("data" => $pager, "colspan" => "5"));