diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-07-08 09:55:47 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-07-08 09:55:47 +0000 |
commit | 12506d83654dc857bbff6e022c7d2dc5123a6194 (patch) | |
tree | 5b487a3b83744b3150032c72b8dc7b42f45a3b48 | |
parent | 70c40e3a9b9bd090a0adcf627577a5e7f6789b7d (diff) | |
download | brdo-12506d83654dc857bbff6e022c7d2dc5123a6194.tar.gz brdo-12506d83654dc857bbff6e022c7d2dc5123a6194.tar.bz2 |
- Added 3 missing t() functions to the statistics module's administration
pages. Patch #73 by Stefan.
-rw-r--r-- | modules/statistics.module | 2 | ||||
-rw-r--r-- | modules/statistics/statistics.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/statistics.module b/modules/statistics.module index 7804bb970..3e7a6c10b 100644 --- a/modules/statistics.module +++ b/modules/statistics.module @@ -314,7 +314,7 @@ function statistics_admin_accesslog_table($type, $id) { $url = message_na(); } - $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($node->nid ? l($node->title, "node/view/$node->nid") : message_na()), format_name($user), $log->hostname ? $log->hostname : message_na(), $url, ($log->nid ? l("track node", "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l("track user", "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l("track host", "admin/statistics/log/host/$log->hostname") : "")); + $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($node->nid ? l($node->title, "node/view/$node->nid") : message_na()), format_name($user), $log->hostname ? $log->hostname : message_na(), $url, ($log->nid ? l(t("track node"), "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l(t("track user"), "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l(t("track host"), "admin/statistics/log/host/$log->hostname") : "")); } if ($pager = pager_display(NULL, 50, 0, "admin")) { diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index 7804bb970..3e7a6c10b 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -314,7 +314,7 @@ function statistics_admin_accesslog_table($type, $id) { $url = message_na(); } - $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($node->nid ? l($node->title, "node/view/$node->nid") : message_na()), format_name($user), $log->hostname ? $log->hostname : message_na(), $url, ($log->nid ? l("track node", "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l("track user", "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l("track host", "admin/statistics/log/host/$log->hostname") : "")); + $rows[] = array(array("data" => format_date($log->timestamp, "small"), "nowrap" => "nowrap"), ($node->nid ? l($node->title, "node/view/$node->nid") : message_na()), format_name($user), $log->hostname ? $log->hostname : message_na(), $url, ($log->nid ? l(t("track node"), "admin/statistics/log/node/$log->nid") : ""), ($user->uid ? l(t("track user"), "admin/statistics/log/user/$user->uid") : ""), ($log->hostname ? l(t("track host"), "admin/statistics/log/host/$log->hostname") : "")); } if ($pager = pager_display(NULL, 50, 0, "admin")) { |