Per #736454: Generate nodequeue assignments truncates queues at 10 items, Generate nodequeue assignments is arbitrarily limited to 10 nodes per queue. Please let us adjust this without hacking the code.
Per #736454: Generate nodequeue assignments truncates queues at 10 items, Generate nodequeue assignments is arbitrarily limited to 10 nodes per queue. Please let us adjust this without hacking the code.
Comments
Comment #1
ezra-g commentedPatches welcome :)
Comment #2
damiandab commentedsubscribing
Comment #3
Guido Forks commentedhack line 125 of nodequeue_generate.module (version 6.x-2.11):
from:
$result = db_query_range($sql, $args, 0, $form_state['values']['rows'][$subqueue->qid]['limit']);
to:
$result = db_query_range($sql, $args, 0, "100"); //$form_state['values']['rows'][$subqueue->qid]['limit']);
then put it back how it was and no one will ever know.
Comment #4
jaydub commentedThis feature already exists in the 7.x branch of Nodequeue so setting back to 6.x.