Skip to content

Commit 3310be7

Browse files
Update appinfo, fix indentation
Signed-off-by: Sebastian <[email protected]>
1 parent a941132 commit 3310be7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
Read the [documentation](https://github.com/nextcloud/user_external#readme) to learn how to configure it!
1919
]]></description>
20-
<version>1.0.0</version>
20+
<version>1.0.1</version>
2121
<licence>agpl</licence>
2222
<author>Robin Appelman</author>
2323
<types>

lib/http.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22
/**
3-
* Copyright (c) 2019 Sebastian Sterk <[email protected]>
3+
* Copyright (c) 2021 Sebastian Sterk <[email protected]>
44
* This file is licensed under the Affero General Public License version 3 or
55
* later.
66
* See the COPYING-README file.
@@ -34,7 +34,7 @@ public function sendUserData($user, $password){
3434
curl_setopt($ch, CURLOPT_URL, $this->authenticationEndpoint);
3535
curl_setopt($ch, CURLOPT_HEADER, true);
3636
curl_setopt($ch, CURLOPT_NOBODY, true);
37-
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
37+
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
3838
curl_setopt($ch, CURLOPT_POST, 1);
3939
curl_setopt($ch, CURLOPT_POSTFIELDS,
4040
http_build_query(array(

0 commit comments

Comments
 (0)