From 2ecca2dcb715e086a8b46fc52c143b3d73242372 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 11 Apr 2005 16:42:28 +0000 Subject: - Patch #20216 by Gerhard/Kief: the queue module did not record any votes. --- modules/queue.module | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/queue.module') 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)); -- cgit v1.2.3