diff options
author | Dries Buytaert <dries@buytaert.net> | 2004-06-02 19:01:40 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2004-06-02 19:01:40 +0000 |
commit | c0b85a5721be04cec2f5e0d4a61200e43f2a9d92 (patch) | |
tree | d2ae2f9b01fa39fc0ad26f4821e033865dc51dd9 /modules/book.module | |
parent | dfef5164b49fc79af58ab6e7a595add1b6dc7592 (diff) | |
download | brdo-c0b85a5721be04cec2f5e0d4a61200e43f2a9d92.tar.gz brdo-c0b85a5721be04cec2f5e0d4a61200e43f2a9d92.tar.bz2 |
- Patch #4950 by Stefan (and Morbus): made watchdog messages translatable.
Diffstat (limited to 'modules/book.module')
-rw-r--r-- | modules/book.module | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/book.module b/modules/book.module index f499db81c..7a36a03d2 100644 --- a/modules/book.module +++ b/modules/book.module @@ -837,8 +837,8 @@ function book_admin_save($nid, $edit = array()) { } } - $message = t("updated book '%title'", array("%title" => $book->title)); - watchdog("special", $message); + $message = t('updated book "%title"', array('%title' => $book->title)); + watchdog('special', $message); return $message; } |