Skip to content

Commit

Permalink
ISLANDORA-1826 Remove ambiguous wording from batch queue / set pages
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdentremont committed Oct 20, 2016
1 parent 752d725 commit 9ff10d3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions islandora_batch.module
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ function islandora_batch_menu() {
'access arguments' => array(2),
);
$items['islandora_batch/reports/queue/%islandora_batch_set/delete'] = $delete_set_base + array(
'title' => 'Delete set from queue',
'title' => 'Delete set',
'page arguments' => array(3, FALSE),
'access arguments' => array(3),
'type' => MENU_LOCAL_ACTION,
);
$items['admin/reports/islandora_batch_queue/%islandora_batch_set/delete'] = $delete_set_base + array(
'title' => 'Delete set from queue',
'title' => 'Delete set',
'page arguments' => array(3, TRUE),
'access arguments' => array(3),
'type' => MENU_LOCAL_ACTION,
Expand Down
4 changes: 2 additions & 2 deletions views/handlers/IslandoraBatchViewsFieldHandlerAction.inc
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class IslandoraBatchViewsFieldHandlerQueueActions extends IslandoraBatchViewsFie
'query' => drupal_get_destination(),
),
array(
'title' => t('Delete item from queue'),
'title' => t('Delete item'),
'href' => format_string('!base/!item_id/delete', array(
'!base' => $this->actionBasePath(),
'!item_id' => $this->getItemId($values),
Expand Down Expand Up @@ -233,7 +233,7 @@ class IslandoraBatchViewsFieldHandlerSetActions extends IslandoraBatchViewsField
'query' => drupal_get_destination(),
),
array(
'title' => t('Delete set from queue'),
'title' => t('Delete set'),
'href' => format_string('!base/!set_id/delete', array(
'!base' => $this->actionBasePath(),
'!set_id' => $this->getSetId($values),
Expand Down

0 comments on commit 9ff10d3

Please sign in to comment.