<+>UTF-8 =================================================================== --- scheduler/scheduler.module +++ scheduler/scheduler.module @@ -1357,7 +1357,7 @@ drupal_alter('scheduler_nid_list', $nids, $action); foreach ($nids as $nid) { - $n = node_load($nid); + $n = node_load($nid, NULL, TRUE); // Check that other modules allow the action on this node. if (!_scheduler_allow($n, $action)) { @@ -1441,7 +1441,7 @@ foreach ($nids as $nid) { // If this node is to be unpublished, we can update the node and remove the // record since it cannot be republished. - $n = node_load($nid); + $n = node_load($nid, NULL, TRUE); // Check that other modules allow the action on this node. if (!_scheduler_allow($n, $action)) {