Index: watchdog.module =================================================================== RCS file: /cvs/drupal/drupal/modules/watchdog.module,v retrieving revision 1.122 diff -u -F^f -r1.122 watchdog.module --- watchdog.module 24 Apr 2005 16:34:36 -0000 1.122 +++ watchdog.module 10 May 2005 03:21:15 -0000 @@ -143,7 +143,7 @@ function watchdog_event($id) { $output .= ' '. t('Location') ."". l($watchdog->location, $watchdog->location) .""; $output .= ' '. t('Message') ."$watchdog->message"; $output .= ' '. t('Severity') .''. $severity[$watchdog->severity] .''; - $output .= ' '. t('Hostname') ."$watchdog->hostname"; + $output .= ' '. t('Hostname') .'' . $watchdog->hostname . ""; $output .= ''; } return $output;