From d669f34958bfce7b83bf31fdd8a7f9b8879f0277 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Sat, 6 Mar 2010 00:37:10 +0000 Subject: [PATCH] Use proper variable name. --- feeds.module | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/feeds.module b/feeds.module index 8297dde5..01524cff 100644 --- a/feeds.module +++ b/feeds.module @@ -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. * - * @param $feed_info + * @param $job * Array where the key 'id' is the id of a FeedsImporter object and the key * 'feed_nid' is the node id of feed node. */ -function feeds_scheduler_work($feed_info) { - feeds_scheduler()->work($feed_info); +function feeds_scheduler_work($job) { + feeds_scheduler()->work($job); } /** -- GitLab