"Import step" title is wrong ("Export step").

To fix change this:

function mm_export_menu() {
  $items['admin/build/media_mover/tools/import'] = array(
    'title' => 'Export Step',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('mm_export_import'),
    'access arguments' => array('administer media_mover'),
    'type' => MENU_LOCAL_TASK,
  ); 

to this:

function mm_export_menu() {
  $items['admin/build/media_mover/tools/import'] = array(
    'title' => 'Import Step',
    'page callback' => 'drupal_get_form',
    'page arguments' => array('mm_export_import'),
    'access arguments' => array('administer media_mover'),
    'type' => MENU_LOCAL_TASK,
  ); 

Comments

arthurf’s picture

Status: Active » Fixed

fix is committed to dev, thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.