Skip to content

Commit

Permalink
Merge pull request ding2#1 from odensecentralbibliotek/reserved_message
Browse files Browse the repository at this point in the history
fixed reserved message (it is set to getProviderId() instead of getTitle...
  • Loading branch information
cableman committed Dec 17, 2012
2 parents 46d3b09 + 4f040ad commit c9e463a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ding_reservation.module
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ function ding_reservation_reserve_form_submit($form, &$form_state) {
drupal_set_message(t('"@title" reserved and will be available for pickup at @branch.', array('@title' => $reservable->getTitle(), '@branch' => $branch_name)));
}
else {
drupal_set_message(t('"@title" reserved.', array('@title' => $reservable->getProviderId())));
drupal_set_message(t('"@title" reserved.', array('@title' => $reservable->getTitle())));
}

if (is_array($reservation_result) and !empty($reservation_result['queue_number'])) {
Expand Down

0 comments on commit c9e463a

Please sign in to comment.