diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-01-09 09:22:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-01-09 09:22:40 +0000 |
commit | 64b100d19ace2c9b82ced4438036a64a69eda3c3 (patch) | |
tree | 36a433e7cd27810edb315c2fc79e764742019b54 /misc | |
parent | 0830efe9a6c056d20a286880733fedcbd28b62fa (diff) | |
download | brdo-64b100d19ace2c9b82ced4438036a64a69eda3c3.tar.gz brdo-64b100d19ace2c9b82ced4438036a64a69eda3c3.tar.bz2 |
- Patch #13260 by UnConeD: watchdog module improvements.
We added a 'severity' column to watchdog():
watchdog($type, $message, $link) --> watchdog($type, $message, $severity, $link);
* Specify a severity in case you are reporting a warning or error.
* The $link-parameter is now the fourth parameter instead of the third.
TODO: document this in the upgrade guide.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/drupal.css | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/misc/drupal.css b/misc/drupal.css index bf1811885..221f60d77 100644 --- a/misc/drupal.css +++ b/misc/drupal.css @@ -428,22 +428,16 @@ tr.watchdog-user { tr.watchdog-user .active { background: #eed; } -tr.watchdog-special { +tr.watchdog-content { background: #ddf; } -tr.watchdog-special .active { +tr.watchdog-content .active { background: #cce; } -tr.watchdog-warning { - background: #fda; -} -tr.watchdog-warning .active { - background: #ec9; -} -tr.watchdog-httpd { +tr.watchdog-page-not-found, tr.watchdog-access-denied { background: #dfd; } -tr.watchdog-httpd .active { +tr.watchdog-pagenot-found .active, tr.watchdog-access-denied .active { background: #cec; } tr.watchdog-error { |