summaryrefslogtreecommitdiff
path: root/modules/queue.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-04-11 16:42:28 +0000
committerDries Buytaert <dries@buytaert.net>2005-04-11 16:42:28 +0000
commit2ecca2dcb715e086a8b46fc52c143b3d73242372 (patch)
treeb94831ec254ece081613d922719ef4046c452962 /modules/queue.module
parent9802b20a175e7a04bf8346fdaa7c61714909fb06 (diff)
downloadbrdo-2ecca2dcb715e086a8b46fc52c143b3d73242372.tar.gz
brdo-2ecca2dcb715e086a8b46fc52c143b3d73242372.tar.bz2
- Patch #20216 by Gerhard/Kief: the queue module did not record any votes.
Diffstat (limited to 'modules/queue.module')
-rw-r--r--modules/queue.module2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/queue.module b/modules/queue.module
index ea43220d8..c1056f241 100644
--- a/modules/queue.module
+++ b/modules/queue.module
@@ -164,7 +164,7 @@ function queue_view($nid) {
$edit = $_POST['edit'];
// An associative array with the possible voting options.
- $votes = array('+ 0' => t('neutral (+0)'), '+ 1' => t('post it (+1)'), '- 1' => t('dump it (-1)'));
+ $votes = array('0' => t('neutral (+0)'), '1' => t('post it (+1)'), '-1' => t('dump it (-1)'));
// Load the node from the database.
$node = node_load(array('nid' => $nid, 'moderate' => 1));