Skip to content
Snippets Groups Projects
Commit d669f349 authored by Alex Barth's avatar Alex Barth
Browse files

Use proper variable name.

parent 5664ae73
No related branches found
No related tags found
No related merge requests found
...@@ -362,16 +362,16 @@ function feeds_form_alter(&$form, $form_state, $form_id) { ...@@ -362,16 +362,16 @@ function feeds_form_alter(&$form, $form_state, $form_id) {
} }
/** /**
* Refreshes a feed identified by $feed_info. * Refreshes a feed identified by $job.
* *
* Used as a worker callback for drupal_queue. * Used as a worker callback for drupal_queue.
* *
* @param $feed_info * @param $job
* Array where the key 'id' is the id of a FeedsImporter object and the key * Array where the key 'id' is the id of a FeedsImporter object and the key
* 'feed_nid' is the node id of feed node. * 'feed_nid' is the node id of feed node.
*/ */
function feeds_scheduler_work($feed_info) { function feeds_scheduler_work($job) {
feeds_scheduler()->work($feed_info); feeds_scheduler()->work($job);
} }
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment