summaryrefslogtreecommitdiff
path: root/modules/statistics
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-07-10 01:44:28 +0000
committerDries Buytaert <dries@buytaert.net>2010-07-10 01:44:28 +0000
commit856b6e1f408a0c5d8f8865f6b80a629e2f99948c (patch)
treefb63badadc3a9a606c3168eae83009bea219ae6a /modules/statistics
parentb7be0bd1843990030d83a468426816a99337a216 (diff)
downloadbrdo-856b6e1f408a0c5d8f8865f6b80a629e2f99948c.tar.gz
brdo-856b6e1f408a0c5d8f8865f6b80a629e2f99948c.tar.bz2
- Patch #844892 by andypost: minor code style fixes.
Diffstat (limited to 'modules/statistics')
-rw-r--r--modules/statistics/statistics.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module
index 859ca1e4e..db54ab49c 100644
--- a/modules/statistics/statistics.module
+++ b/modules/statistics/statistics.module
@@ -60,7 +60,7 @@ function statistics_exit() {
if (variable_get('statistics_count_content_views', 0)) {
// We are counting content views.
- if ((arg(0) == 'node') && is_numeric(arg(1)) && arg(2) == '') {
+ if (arg(0) == 'node' && is_numeric(arg(1)) && arg(2) == NULL) {
// A node has been viewed, so update the node's counters.
db_merge('node_counter')
->key(array('nid' => arg(1)))