Skip to content

Commit

Permalink
Update appinfo, fix indentation
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian <sebastian@wiuwiu.de>
  • Loading branch information
sebastiansterk committed Jan 20, 2021
1 parent a941132 commit 3310be7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
Read the [documentation](https://github.com/nextcloud/user_external#readme) to learn how to configure it!
]]></description>
<version>1.0.0</version>
<version>1.0.1</version>
<licence>agpl</licence>
<author>Robin Appelman</author>
<types>
Expand Down
4 changes: 2 additions & 2 deletions lib/http.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php
/**
* Copyright (c) 2019 Sebastian Sterk <sebastian@wiuwiu.de>
* Copyright (c) 2021 Sebastian Sterk <sebastian@wiuwiu.de>
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
Expand Down Expand Up @@ -34,7 +34,7 @@ public function sendUserData($user, $password){
curl_setopt($ch, CURLOPT_URL, $this->authenticationEndpoint);
curl_setopt($ch, CURLOPT_HEADER, true);
curl_setopt($ch, CURLOPT_NOBODY, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS,
http_build_query(array(
Expand Down

0 comments on commit 3310be7

Please sign in to comment.