diff options
author | Dries Buytaert <dries@buytaert.net> | 2003-06-14 16:11:29 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2003-06-14 16:11:29 +0000 |
commit | 5646f894ac8e06b9199465e4e905b5e55f7f2ed9 (patch) | |
tree | 676d7d9fea5d9b8781ad8083464d8756dc5a9f28 /modules | |
parent | 3e9aabe05897becc4b0b749832540a49eb77184d (diff) | |
download | brdo-5646f894ac8e06b9199465e4e905b5e55f7f2ed9.tar.gz brdo-5646f894ac8e06b9199465e4e905b5e55f7f2ed9.tar.bz2 |
- Bugfix: fixed broken links. Patch by Ax.
Diffstat (limited to 'modules')
-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 9618a31c9..b8bab8277 100644 --- a/modules/statistics.module +++ b/modules/statistics.module @@ -266,7 +266,7 @@ function statistics_admin_count_table($dbfield, $dbrows) { $header = array(t("title"), t("today"), t("all time"), t("last hit"), t("operations")); while ($nid = db_fetch_array($result)) { - $rows[] = array(l($nid["title"], "node/view/". $nid["nid"], array("title" => t("View this posting."))), $nid["daycount"], $nid["totalcount"], format_date($nid["timestamp"], "small"), l("view referrers", "admin/statistics/log/host/". $nid["nid"])); + $rows[] = array(l($nid["title"], "node/view/". $nid["nid"], array("title" => t("View this posting."))), $nid["daycount"], $nid["totalcount"], format_date($nid["timestamp"], "small"), l("track node", "admin/statistics/log/node/$nid[nid]")); } return table($header, $rows); diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index 9618a31c9..b8bab8277 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -266,7 +266,7 @@ function statistics_admin_count_table($dbfield, $dbrows) { $header = array(t("title"), t("today"), t("all time"), t("last hit"), t("operations")); while ($nid = db_fetch_array($result)) { - $rows[] = array(l($nid["title"], "node/view/". $nid["nid"], array("title" => t("View this posting."))), $nid["daycount"], $nid["totalcount"], format_date($nid["timestamp"], "small"), l("view referrers", "admin/statistics/log/host/". $nid["nid"])); + $rows[] = array(l($nid["title"], "node/view/". $nid["nid"], array("title" => t("View this posting."))), $nid["daycount"], $nid["totalcount"], format_date($nid["timestamp"], "small"), l("track node", "admin/statistics/log/node/$nid[nid]")); } return table($header, $rows); |