diff options
author | Dries Buytaert <dries@buytaert.net> | 2007-04-24 13:55:36 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2007-04-24 13:55:36 +0000 |
commit | 9a6099c234d65989b7d912cba8bb6b5c4d681d96 (patch) | |
tree | 468da23aad44a7c66706a675b34cd78a20f0c15c /modules/throttle | |
parent | f73610bec64dbc81b8e5031ac6778c5f539cb730 (diff) | |
download | brdo-9a6099c234d65989b7d912cba8bb6b5c4d681d96.tar.gz brdo-9a6099c234d65989b7d912cba8bb6b5c4d681d96.tar.bz2 |
- Patch #76588 by Gabor: made log messages translatable. Yay.
Diffstat (limited to 'modules/throttle')
-rw-r--r-- | modules/throttle/throttle.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/throttle/throttle.module b/modules/throttle/throttle.module index 9879fe55e..4c1da37a5 100644 --- a/modules/throttle/throttle.module +++ b/modules/throttle/throttle.module @@ -106,7 +106,7 @@ function throttle_exit() { } if ($message) { cache_clear_all(); - watchdog('throttle', t('Throttle') .': '. $message); + watchdog('throttle', 'Throttle: %message', array('%message' => $message)); } } } |