When using the scheduler, the Teaser/Summary doesn't work. It resets the value to NULL inside the when the node is published.

Comments

IGadmin’s picture

Version: 5.x-1.4 » 4.7.x-1.x-dev

I can verify this behavior as well, in the following configuration:

-Drupal 4.7.6
-Latest build of Scheduler for 4.7.x
-Nodeteaser module used for teasers

When the node is saved, the nodeteaser is properly saved, too. But when published by Scheduler, the nodeteaser is reset to NULL. Undesirable behavior.

AjK’s picture

Project: Scheduler » Node Teaser

Sorry guys but but when Scheduler publishes all it does is :-

  $node = node_load(...); 
  $node->status = 1;
  node_save($node);

All Drupal API calls. Nodeteaser's tables are not touched by Scheduler. So the fault must me in Nodeteaser as it doesn't seem to be handling node_load() / node_save() API calls.

Moving this issue to Nodeteaser.