diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-07-29 17:56:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-07-29 17:56:41 +0000 |
commit | 3a7b64ae03242d09685ad2a2e82c9657f7fa85e6 (patch) | |
tree | 064a5693d48b73b05fb921f250e35e26e0cdc251 /modules/forum/forum.module | |
parent | 2e8e54aea344cf855c1ab128cf09a84c68b3227b (diff) | |
download | brdo-3a7b64ae03242d09685ad2a2e82c9657f7fa85e6.tar.gz brdo-3a7b64ae03242d09685ad2a2e82c9657f7fa85e6.tar.bz2 |
- Patch #61893 by timnc: remove message_na().
Diffstat (limited to 'modules/forum/forum.module')
-rw-r--r-- | modules/forum/forum.module | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/forum/forum.module b/modules/forum/forum.module index 9c4cbf573..d826ae963 100644 --- a/modules/forum/forum.module +++ b/modules/forum/forum.module @@ -675,7 +675,7 @@ function _forum_format($topic) { return t('%time ago<br />by %author', array('%time' => format_interval(time() - $topic->timestamp), '%author' => theme('username', $topic))); } else { - return message_na(); + return t('n/a'); } } |