summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-06-14 16:11:29 +0000
committerDries Buytaert <dries@buytaert.net>2003-06-14 16:11:29 +0000
commit5646f894ac8e06b9199465e4e905b5e55f7f2ed9 (patch)
tree676d7d9fea5d9b8781ad8083464d8756dc5a9f28
parent3e9aabe05897becc4b0b749832540a49eb77184d (diff)
downloadbrdo-5646f894ac8e06b9199465e4e905b5e55f7f2ed9.tar.gz
brdo-5646f894ac8e06b9199465e4e905b5e55f7f2ed9.tar.bz2
- Bugfix: fixed broken links. Patch by Ax.
-rw-r--r--modules/statistics.module2
-rw-r--r--modules/statistics/statistics.module2
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);