diff options
Diffstat (limited to 'modules')
-rw-r--r-- | modules/queue.module | 2 |
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)); |