Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
mishavantol committed Dec 18, 2018
2 parents f487afd + 0e0fe0c commit 425cc3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
- Clearing local caches (statuses, priorities, fields and resolutions) on endpoint change by [@jpastoor].
- Error details from failed API calls were not available back from `Api::api method` call by [@betterphp].
- Warning about `count()` function usage on PHP 7.2, when searching for issues by [@aik099].
- Capitalize `globalId` properly in `createRemotelink` [@glensc].

## [1.0.0] - 2014-07-27
### Added
Expand All @@ -65,3 +66,4 @@ This project adheres to [Semantic Versioning](http://semver.org/).
[@DerMika]: https://github.com/DerMika
[@aik099]: https://github.com/aik099
[@betterphp]: https://github.com/betterphp
[@glensc]: https://github.com/glensc
2 changes: 1 addition & 1 deletion src/Jira/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ public function createRemotelink(
array $application = null
) {
$options = array(
'globalid' => $global_id,
'globalId' => $global_id,
'relationship' => $relationship,
'object' => $object,
);
Expand Down

0 comments on commit 425cc3b

Please sign in to comment.