Skip to content

Commit

Permalink
Merge pull request #32 from whikloj/fix_extend_transaction
Browse files Browse the repository at this point in the history
Add /fcr:tx to extendTransaction URI
  • Loading branch information
DiegoPino committed Feb 9, 2016
2 parents 724e62e + 4cab4fc commit 3798b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FedoraApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ public function createTransaction()
public function extendTransaction($id)
{
$options = ['http_errors' => false];
$uri = $this->generateTransactionUri($id);
$uri = $this->generateTransactionUri($id) . '/fcr:tx';
return $this->client->request(
'POST',
$uri,
Expand Down

0 comments on commit 3798b34

Please sign in to comment.