diff options
author | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-26 02:20:01 +0000 |
---|---|---|
committer | Neil Drumm <drumm@3064.no-reply.drupal.org> | 2006-11-26 02:20:01 +0000 |
commit | b5bf8a8f476fe4214478fec9250e651164b0e76f (patch) | |
tree | 434eb5771bd9238d426be6c19d9c30730af1ab3e /modules/watchdog/watchdog.module | |
parent | fb70944dc92345e3f62c5ff810c805ffdeacd4bb (diff) | |
download | brdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.gz brdo-b5bf8a8f476fe4214478fec9250e651164b0e76f.tar.bz2 |
#97824 by Gurpartap. Move enclosing elements outside of their t().
Diffstat (limited to 'modules/watchdog/watchdog.module')
-rw-r--r-- | modules/watchdog/watchdog.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/watchdog/watchdog.module b/modules/watchdog/watchdog.module index 25ff9cb01..d7fb3acf1 100644 --- a/modules/watchdog/watchdog.module +++ b/modules/watchdog/watchdog.module @@ -23,7 +23,7 @@ function watchdog_help($section) { $output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="@watchdog">Watchdog page</a>.', array('@watchdog' => 'http://drupal.org/handbook/modules/watchdog/')) .'</p>'; return $output; case 'admin/logs': - return t('<p>The watchdog module monitors your web site, capturing system events in a log to be reviewed by an authorized individual at a later time. The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the watchdog report on a regular basis as it is often the only way to tell what is going on.</p>'); + return '<p>'. t('The watchdog module monitors your web site, capturing system events in a log to be reviewed by an authorized individual at a later time. The watchdog log is simply a list of recorded events containing usage data, performance data, errors, warnings and operational information. It is vital to check the watchdog report on a regular basis as it is often the only way to tell what is going on.') .'</p>'; } } |