- Fixed translation glitch in watchdog module. Thanks Stefan.
parent
37da83ce53
commit
51976ac134
|
@ -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"));
|
||||
|
|
|
@ -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"));
|
||||
|
|
Loading…
Reference in New Issue