"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
Comment #1
arthurf commentedfix is committed to dev, thanks!