Index: feedmanager.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/feedparser/feedmanager.module,v
retrieving revision 1.47.4.7
diff -U3 -r1.47.4.7 feedmanager.module
--- feedmanager.module	13 May 2007 17:17:58 -0000	1.47.4.7
+++ feedmanager.module	17 May 2007 19:27:56 -0000
@@ -323,7 +323,7 @@
     '#title' => t('Update interval'),
     '#default_value' => $edit['refresh'],
     '#options' => $period,
-    '#description' => t('The refresh interval indicating how often you want to update this feed. Requires !cron.', array('!cron' => l('crontab', 'admin/settings') )),
+    '#description' => t('The refresh interval indicating how often you want to update this feed. Requires !cron.', array('!cron' => l('crontab', 'admin/help/system') )),
   );
 
   $period = array(0 => t('never')) + drupal_map_assoc(array(3600, 10800, 21600, 32400, 43200, 86400, 172800, 259200, 604800, 1209600, 2419200, 4838400, 9676800), 'format_interval');
@@ -332,7 +332,7 @@
     '#title' => t('Discard news items older than'),
     '#default_value' => $edit['expires'],
     '#options' => $period,
-    '#description' => t('Older news items will be automatically discarded.  Requires !cron.', array('!cron' => l('crontab', 'admin/settings') ))
+    '#description' => t('Older news items will be automatically discarded.  Requires !cron.', array('!cron' => l('crontab', 'admin/help/system') ))
   );
 
   // Handling of categories:
@@ -419,9 +419,9 @@
       '#maxlength' => 255,
     );
   } else {
-		$form['taxonomy_help'] = array(
-			'#value' => t('You can automatically use tags defined in this feed to categories your nodes as they are created. To do this you need to !url to the %type content-type.', array('!url' => l(t('create a vocabulary and assign it'), 'admin/taxonomy'), '%type' => 'aggregator-item'))
-		);
+    $form['taxonomy_help'] = array(
+      '#value' => t('You can automatically use tags defined in this feed to categories your nodes as they are created. To do this you need to !url to the %type content-type.', array('!url' => l(t('create a vocabulary and assign it'), 'admin/content/taxonomy'), '%type' => 'aggregator-item')),
+    );
   }
 
   return $form;
