From 9c3bca068da98c170ff0c55e3d74db90dec7dfbb Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 21 Apr 2003 12:20:25 +0000 Subject: [PATCH] - Added some missing quotes. --- modules/statistics.module | 8 +++++--- modules/statistics/statistics.module | 8 +++++--- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/modules/statistics.module b/modules/statistics.module index 7dec3f05d72..4d18fc444c9 100644 --- a/modules/statistics.module +++ b/modules/statistics.module @@ -89,14 +89,16 @@ function statistics_perm() { function statistics_link($type, $node = 0, $main = 0) { global $id; + $links = array(); + if ($type == "node" && user_access("access statistics") && variable_get("statistics_display_counter", 0)) { $statistics = statistics_get($node->nid); if ($statistics) { if (user_access("administer statistics")) { - $links[] = l(format_plural($statistics[totalcount], "1 read", "%count reads"), "admin/statistics/referrers/$node->nid"); + $links[] = l(format_plural($statistics["totalcount"], "1 read", "%count reads"), "admin/statistics/referrers/$node->nid"); } else { - $links[] = format_plural($statistics[totalcount], "1 read", "%count reads"); + $links[] = format_plural($statistics["totalcount"], "1 read", "%count reads"); } } } @@ -133,7 +135,7 @@ function statistics_link($type, $node = 0, $main = 0) { menu("admin/block/whos online block", "configure 'who is online' block", "statistics_admin", $help["who is online block"], 5); } - return $links ? $links : array(); + return $links; } diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index 7dec3f05d72..4d18fc444c9 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -89,14 +89,16 @@ function statistics_perm() { function statistics_link($type, $node = 0, $main = 0) { global $id; + $links = array(); + if ($type == "node" && user_access("access statistics") && variable_get("statistics_display_counter", 0)) { $statistics = statistics_get($node->nid); if ($statistics) { if (user_access("administer statistics")) { - $links[] = l(format_plural($statistics[totalcount], "1 read", "%count reads"), "admin/statistics/referrers/$node->nid"); + $links[] = l(format_plural($statistics["totalcount"], "1 read", "%count reads"), "admin/statistics/referrers/$node->nid"); } else { - $links[] = format_plural($statistics[totalcount], "1 read", "%count reads"); + $links[] = format_plural($statistics["totalcount"], "1 read", "%count reads"); } } } @@ -133,7 +135,7 @@ function statistics_link($type, $node = 0, $main = 0) { menu("admin/block/whos online block", "configure 'who is online' block", "statistics_admin", $help["who is online block"], 5); } - return $links ? $links : array(); + return $links; }