diff --git a/feeds_tamper_ui/feeds_tamper_ui.admin.inc b/feeds_tamper_ui/feeds_tamper_ui.admin.inc index faa36aa..e39be20 100755 --- a/feeds_tamper_ui/feeds_tamper_ui.admin.inc +++ b/feeds_tamper_ui/feeds_tamper_ui.admin.inc @@ -14,7 +14,7 @@ function feeds_tamper_ui_list_form($form, &$form_state, $importer) { // Help message at the top. I have a seceret, I added the link back to the // mappings because it makes my life a lot easier while testing this. - $link = l(t('mapping'), FEEDS_TAMPER_UI_FEEDS_BASE . '/edit/' . $importer->id . '/mapping'); + $link = l(t('mapping'), FEEDS_TAMPER_UI_FEEDS_BASE . '/' . $importer->id . '/mapping'); $message = 'Configure plugins to modify Feeds data before it gets saved. Each !mapping can be manipulated individually.'; $message = t($message, array('!mapping' => $link)); $form['help']['#markup'] = '

' . $message . '

'; @@ -174,7 +174,7 @@ function theme_feeds_tamper_ui_list_form($variables) { if (empty($mappings)) { // Can't use drupal_set_message here. - $link = FEEDS_TAMPER_UI_FEEDS_BASE . '/edit/' . $form['#importer']->id . '/mapping'; + $link = FEEDS_TAMPER_UI_FEEDS_BASE . '/' . $form['#importer']->id . '/mapping'; $link = l(t('mappings'), $link); $output = '
'; $message = 'There are no !mappings defined for this importer.'; diff --git a/feeds_tamper_ui/feeds_tamper_ui.module b/feeds_tamper_ui/feeds_tamper_ui.module index 625b9fd..b666b91 100755 --- a/feeds_tamper_ui/feeds_tamper_ui.module +++ b/feeds_tamper_ui/feeds_tamper_ui.module @@ -133,7 +133,7 @@ function feeds_tamper_ui_form_feeds_ui_overview_form_alter(&$form, &$form_state) */ function feeds_tamper_ui_form_feeds_ui_mapping_form_alter(&$form, &$form_state) { if (feeds_tamper_access($form['#importer'])) { - $form['help']['#markup'] .= l(t('Configure Feeds Tamper'), FEEDS_TAMPER_UI_BASE . '/list/' . $form['#importer']->id); + $form['help']['#markup'] .= l(t('Configure Feeds Tamper'), FEEDS_TAMPER_UI_BASE . '/list/' . $form['#importer']); } }