summaryrefslogtreecommitdiff
path: root/modules/statistics.module
diff options
context:
space:
mode:
authorSteven Wittens <steven@10.no-reply.drupal.org>2005-07-29 06:59:29 +0000
committerSteven Wittens <steven@10.no-reply.drupal.org>2005-07-29 06:59:29 +0000
commit746b24232696bd60a23de3f2f8ec056137b531b5 (patch)
treeebd5a9cdfe832d8dc01ce4b787ea06b340229151 /modules/statistics.module
parent7aa20d30d8e9f77075c4484dd96a3e9417f6212c (diff)
downloadbrdo-746b24232696bd60a23de3f2f8ec056137b531b5.tar.gz
brdo-746b24232696bd60a23de3f2f8ec056137b531b5.tar.bz2
- #27668: Replace deprecated tags/attributes with XHTML/CSS in locale.
- (#15121) Improve string cut-off for locale table
Diffstat (limited to 'modules/statistics.module')
-rw-r--r--modules/statistics.module6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/statistics.module b/modules/statistics.module
index 5ca038094..b74407f0c 100644
--- a/modules/statistics.module
+++ b/modules/statistics.module
@@ -171,7 +171,7 @@ function statistics_node_tracker() {
$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'),
+ array('data' => format_date($log->timestamp, 'small'), 'class' => 'nowrap'),
l(_statistics_column_width($log->url), $log->url),
format_name($log),
l(t('details'), "admin/logs/access/$log->aid"));
@@ -200,7 +200,7 @@ function statistics_user_tracker() {
$result = pager_query('SELECT aid, timestamp, path, title FROM {accesslog} WHERE uid = %d' . tablesort_sql($header), 30, 0, NULL, $account->uid);
while ($log = db_fetch_object($result)) {
$rows[] = array(
- array('data' => format_date($log->timestamp, 'small'), 'nowrap' => 'nowrap'),
+ array('data' => format_date($log->timestamp, 'small'), 'class' => 'nowrap'),
_statistics_format_item($log->title, $log->path),
l(t('details'), "admin/logs/access/$log->aid"));
}
@@ -233,7 +233,7 @@ function statistics_recent_hits($type = 'all', $id = 0) {
$result = pager_query($sql, 30);
while ($log = db_fetch_object($result)) {
$rows[] = array(
- array('data' => format_date($log->timestamp, 'small'), 'nowrap' => 'nowrap'),
+ array('data' => format_date($log->timestamp, 'small'), 'class' => 'nowrap'),
_statistics_format_item($log->title, $log->path),
format_name($log),
l(t('details'), "admin/logs/access/$log->aid"));