From a597354bcb48536f2c7633d53c78fa931b186c20 Mon Sep 17 00:00:00 2001 From: Steven Wittens Date: Tue, 31 May 2005 21:14:27 +0000 Subject: - Code cleanup: improve format_plural usage, add some missing placeholder/check calls, and introduce API for tags. --- modules/statistics/statistics.module | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/statistics/statistics.module') diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index 62db34e55..46e521b80 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -144,11 +144,11 @@ function statistics_access_log($aid) { if ($access = db_fetch_object($result)) { $output = ''; $output .= ' "; - $output .= ' "; + $output .= ' '; $output .= ' "; $output .= ' '; $output .= ' '; - $output .= ' "; + $output .= ' '; $output .= '
'. t('Page URL') ."". l(url($access->path, NULL, NULL, TRUE), $access->url) ."
'. t('Page title') ."$access->title
'. t('Page title') .''. check_plain($access->title) .'
'. t('Referrer') ."". ($access->url ? l($access->url, $access->url) : '') ."
'. t('Date') .''. format_date($access->timestamp, 'large') .'
'. t('User') .''. format_name($access) .'
'. t('Hostname') ."$access->hostname
'. t('Hostname') .''. check_plain($access->hostname) .'
'; return $output; } -- cgit v1.2.3