Hi,

I'm having this issue of the Name of the Sub Queue being changed to the name of the content type when we edit the content of that content type.

Thanks.

Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Rajab Natshah’s picture

As if we look in the content of the following tables.

nodequeue_queue
nodequeue_subqueue

If we do this Query:

SELECT * FROM nodequeue_queue WHERE owner="smartqueue_nodetypes"\G;

We will get this

              qid: 136
          name: featured_photos
         title: Featured Photos
subqueue_title: %subqueue - Featured Photos
          size: 0
          link: 
   link_remove: 
         owner: smartqueue_nodetypes
    show_in_ui: 1
   show_in_tab: 1
 show_in_links: 0
     reference: content_type_name
       reverse: 1
          i18n: 0

And if we do this query :

select * from nodequeue_subqueue;

We get this results

| sqid | qid | reference | title
|  595 | 136 | 626       | Content 1 - Featured Photos  |
|  596 | 136 | 656       | content_type_name           |
|  597 | 136 | 991       | Content 3 - Featured Photos |
|  598 | 136 | 1111      | Content 4 - Featured Photos |
|  599 | 136 | 1241      | Content 5 - Featured Photos |
|  600 | 136 | 1301      | Content 6  - Featured Photos |
Rajab Natshah’s picture

Fixed the smartqueue nodetypes node update function with this patch.

Rajab Natshah’s picture

Issue summary: View changes
Rajab Natshah’s picture

Status: Needs work » Needs review