diff options
author | Dries Buytaert <dries@buytaert.net> | 2008-01-06 18:22:14 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2008-01-06 18:22:14 +0000 |
commit | 7d7f2928d1543b61de9613a5308454775b79c667 (patch) | |
tree | 39968ee6b40d63b102ea61608b85635fd7834a7c /modules/system/system.admin.inc | |
parent | be9f7bf206b0507129af9b5e527216d37d881972 (diff) | |
download | brdo-7d7f2928d1543b61de9613a5308454775b79c667.tar.gz brdo-7d7f2928d1543b61de9613a5308454775b79c667.tar.bz2 |
- Patch #203222 by Pascalle: added missing message type to watchdog call.
Diffstat (limited to 'modules/system/system.admin.inc')
-rw-r--r-- | modules/system/system.admin.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.admin.inc b/modules/system/system.admin.inc index 263b7b671..9505ad1c3 100644 --- a/modules/system/system.admin.inc +++ b/modules/system/system.admin.inc @@ -1729,10 +1729,10 @@ function system_status($check = FALSE) { function system_run_cron() { // Run cron manually if (drupal_cron_run()) { - drupal_set_message(t('Cron ran successfully')); + drupal_set_message(t('Cron ran successfully.')); } else { - drupal_set_message(t('Cron run failed')); + drupal_set_message(t('Cron run failed.'), 'error'); } drupal_goto('admin/reports/status'); |