summaryrefslogtreecommitdiff
path: root/modules/statistics
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-01-19 12:01:35 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-01-19 12:01:35 +0000
commit6adc3dd055f2747514f555d5616cfd3f5a791796 (patch)
tree6729b64006adb76cbc699ab92300e96bdd7efea6 /modules/statistics
parent4e6ceaae9928efd4129634d6d59e507a05c40712 (diff)
downloadbrdo-6adc3dd055f2747514f555d5616cfd3f5a791796.tar.gz
brdo-6adc3dd055f2747514f555d5616cfd3f5a791796.tar.bz2
- Bad quote
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 fcf5b1ed5..a334ee669 100644
--- a/modules/statistics/statistics.module
+++ b/modules/statistics/statistics.module
@@ -171,7 +171,7 @@ function statistics_node_tracker() {
array('data' => t('User'), 'field' => 'u.name'),
array('data' => t('Operations')));
- $result = pager_query('SELECT a.aid, a.timestamp, a.url, a.uid, u.name FROM {accesslog} a LEFT JOIN {users} u ON a.uid = u.uid WHERE a.path LIKE \'node/%d%%'" . tablesort_sql($header), 30, 0, NULL, $node->nid);
+ $result = pager_query('SELECT a.aid, a.timestamp, a.url, a.uid, u.name FROM {accesslog} a LEFT JOIN {users} u ON a.uid = u.uid WHERE a.path LIKE \'node/%d%%\'' . tablesort_sql($header), 30, 0, NULL, $node->nid);
while ($log = db_fetch_object($result)) {
$rows[] = array(
array('data' => format_date($log->timestamp, 'small'), 'nowrap' => 'nowrap'),