diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-11-28 13:31:51 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-11-28 13:31:51 +0000 |
commit | 3981e571f9e8fe1e5d87888bc8132b8303144549 (patch) | |
tree | b2b589596e3df1b2e0fe69acc228ab7e60aa7cef /modules/statistics/statistics.module | |
parent | 70fcf51e844942d32e81de6c98f5b4d1e9dd1b4e (diff) | |
download | brdo-3981e571f9e8fe1e5d87888bc8132b8303144549.tar.gz brdo-3981e571f9e8fe1e5d87888bc8132b8303144549.tar.bz2 |
- Fixed typo.
Diffstat (limited to 'modules/statistics/statistics.module')
-rw-r--r-- | modules/statistics/statistics.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/statistics/statistics.module b/modules/statistics/statistics.module index 11163a5aa..edb6509ec 100644 --- a/modules/statistics/statistics.module +++ b/modules/statistics/statistics.module @@ -153,7 +153,7 @@ function statistics_access_log($aid) { $output .= ' <tr><th>'. t('Referrer') ."</th><td>". ($access->url ? l($access->url, $access->url) : '') ."</td></tr>"; $output .= ' <tr><th>'. t('Date') .'</th><td>'. format_date($access->timestamp, 'large') .'</td></tr>'; $output .= ' <tr><th>'. t('User') .'</th><td>'. format_name($access) .'</td></tr>'; - $output .= ' <tr><th>'. t('Hostname') ."</th><td>$watchdog->hostname</td></tr>"; + $output .= ' <tr><th>'. t('Hostname') ."</th><td>$access->hostname</td></tr>"; $output .= '</table>'; print theme('page', $output); } |