- Patch #20216 by Gerhard/Kief: the queue module did not record any votes.

4.7.x
Dries Buytaert 2005-04-11 16:42:28 +00:00
parent 9802b20a17
commit 2ecca2dcb7
1 changed files with 1 additions and 1 deletions

View File

@ -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));