Skip to content

Commit

Permalink
Issue #1337 by Inlead: Encode special characters in item id.
Browse files Browse the repository at this point in the history
  • Loading branch information
AM committed Nov 18, 2015
1 parent 932e8ae commit 6b39311
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/AlmaClient/AlmaClient.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -438,7 +438,7 @@ public function add_reservation($borr_card, $pin_code, $reservation) {
$params = array(
'borrCard' => $borr_card,
'pinCode' => $pin_code,
'reservable' => $reservation['id'],
'reservable' => rawurlencode($reservation['id']),
'reservationPickUpBranch' => $reservation['pickup_branch'],
'reservationValidFrom' => $reservation['valid_from'],
'reservationValidTo' => $reservation['valid_to'],
Expand Down

0 comments on commit 6b39311

Please sign in to comment.