diff options
author | Dries Buytaert <dries@buytaert.net> | 2005-04-08 13:06:37 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2005-04-08 13:06:37 +0000 |
commit | a21f084160d9c7a1c57eba20634fdd66a40384eb (patch) | |
tree | c1bd0fc02bd51288b727ff92a275a7449778d88f | |
parent | 58b326a838dc98b97c64b9e21f5f634b2e419037 (diff) | |
download | brdo-a21f084160d9c7a1c57eba20634fdd66a40384eb.tar.gz brdo-a21f084160d9c7a1c57eba20634fdd66a40384eb.tar.bz2 |
- Patch by Drumm: change the wording for clarity.
-rw-r--r-- | modules/comment.module | 2 | ||||
-rw-r--r-- | modules/comment/comment.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/comment.module b/modules/comment.module index 19330bc06..be5c7f9b3 100644 --- a/modules/comment.module +++ b/modules/comment.module @@ -1517,7 +1517,7 @@ function comment_moderation_form($comment) { // comment hasn't been moderated yet: if (!isset($votes) && $user->roles) { $result = db_query('SELECT v.mid, v.vote, MAX(v.weight) AS weight, MAX(r.value) AS value FROM {moderation_votes} v INNER JOIN {moderation_roles} r ON r.mid = v.mid WHERE r.rid IN (%s) GROUP BY v.mid, v.vote ORDER BY weight', implode(', ', array_keys($user->roles))); - $votes = array(0 => t('unmoderated')); + $votes = array(0 => t('defer until later')); while ($vote = db_fetch_object($result)) { if ($vote->value != 0) { $votes[$vote->mid] = $vote->vote; diff --git a/modules/comment/comment.module b/modules/comment/comment.module index 19330bc06..be5c7f9b3 100644 --- a/modules/comment/comment.module +++ b/modules/comment/comment.module @@ -1517,7 +1517,7 @@ function comment_moderation_form($comment) { // comment hasn't been moderated yet: if (!isset($votes) && $user->roles) { $result = db_query('SELECT v.mid, v.vote, MAX(v.weight) AS weight, MAX(r.value) AS value FROM {moderation_votes} v INNER JOIN {moderation_roles} r ON r.mid = v.mid WHERE r.rid IN (%s) GROUP BY v.mid, v.vote ORDER BY weight', implode(', ', array_keys($user->roles))); - $votes = array(0 => t('unmoderated')); + $votes = array(0 => t('defer until later')); while ($vote = db_fetch_object($result)) { if ($vote->value != 0) { $votes[$vote->mid] = $vote->vote; |