-
Notifications
You must be signed in to change notification settings - Fork 123
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add an example of issue creation #44
base: master
Are you sure you want to change the base?
Conversation
… the default value is TRUE)
This reverts commit 9ada1b2.
@@ -78,6 +78,7 @@ public function sendRequest($method, $url, $data = array(), $endpoint, Authentic | |||
if ($method == "POST") { | |||
curl_setopt($curl, CURLOPT_POST, 1); | |||
if ($isFile) { | |||
curl_setopt($curl, CURLOPT_SAFE_UPLOAD, false); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would result in an error prior PHP 5.5, where this option was added. Please remove from this PR.
This was fixed in #52 .
PR contains commits that should be no part of this, like changing the composer file and such. Feel free to resubmit with only the example commit. |
@@ -1,40 +1,10 @@ | |||
# Jira Api Rest Client | |||
# Jira Api Rest Client (Forked) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert changes to this file.
Please rebase and solve conflicts. |
Closes #24