I have three nodequeues defined for some node-types, one of them a taxonomy-queue
but in edit-mode there was only the linking name of the latter one displayed.
After "print_r" - ing around I found that in "nodequeue_title_substitute"
the §subqueue-title gets returned if the first argument is undefined.
But if its a normal nodequeue this always seems to be the case.
Changing the return value to §queue-title works for me so far.

Comments

ezra-g’s picture

Can you submit a patch that shows the change you've made?

ezra-g’s picture

This may be related to http://drupal.org/node/277867

ezra-g’s picture

It would be helpful if you could test patch at the issue referenced above. Thanks!

tasc’s picture

sorry for my absence...
For the moment I'm glad to be able to apply patches ... not to write ones ;(

this is the change I made in nodequeue.module line 2107

function nodequeue_title_substitute($text, $queue, $subqueue) {
	
  if (empty($text)) {
// was:
//	return $subqueue->title;
// is now:
     return $queue->title;
  }
  $text = str_replace('%subqueue', $subqueue->title, $text);
  return $text;
}

Apart from that I don't have any issues with this ql module !
I'll have to check the patch ( http://drupal.org/node/277867) later,
but I guess it won't help in my case.

ezra-g’s picture

Status: Active » Closed (fixed)

Please re-open if you're still having this problem.
Thanks!