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

ezra-g’s picture

Patches welcome :)

damiandab’s picture

subscribing

Guido Forks’s picture

hack 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.

jaydub’s picture

Version: 7.x-2.x-dev » 6.x-2.x-dev

This feature already exists in the 7.x branch of Nodequeue so setting back to 6.x.