Skip to content

Commit 171add7

Browse files
committed
Hotfix version 4.4.1
2 parents 2fee2f3 + 683d44c commit 171add7

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7+
## [4.4.1] - 2020-02-02
8+
### Fixed
9+
- Issue generating 'Object of class Closure could not be converted to string' log message
10+
711
## [4.4.0] - 2019-10-09
812
### Added
913
- Users can confirm passwords
@@ -134,6 +138,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
134138
### Changed
135139
- Supported version of ownCloud, Nextcloud: ownCloud 10, Nextcloud 12
136140

141+
[4.4.1]: https://github.com/nextcloud/user_sql/compare/v4.4.0...v4.4.1
137142
[4.4.0]: https://github.com/nextcloud/user_sql/compare/v4.3.0...v4.4.0
138143
[4.3.0]: https://github.com/nextcloud/user_sql/compare/v4.2.1...v4.3.0
139144
[4.2.1]: https://github.com/nextcloud/user_sql/compare/v4.2.0...v4.2.1

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
Retrieve the users and groups info. Allow the users to change their passwords.
99
Sync the users' email addresses with the addresses stored by Nextcloud.
1010
</description>
11-
<version>4.4.0</version>
11+
<version>4.4.1</version>
1212
<licence>agpl</licence>
1313
<author>Marcin Łojewski</author>
1414
<author>Andreas Böhler</author>

lib/Backend/UserBackend.php

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -437,11 +437,10 @@ public function getDisplayNames($search = "", $limit = null, $offset = null)
437437
/**
438438
* @inheritdoc
439439
*/
440-
public function getUsers(
441-
$search = "", $limit = null, $offset = null, $callback = null
442-
) {
440+
public function getUsers($search = "", $limit = null, $offset = null, $callback = null)
441+
{
443442
$this->logger->debug(
444-
"Entering getUsers($search, $limit, $offset, $callback)",
443+
"Entering getUsers($search, $limit, $offset)",
445444
["app" => $this->appName]
446445
);
447446

@@ -478,7 +477,7 @@ public function getUsers(
478477

479478
$this->cache->set($cacheKey, $users);
480479
$this->logger->debug(
481-
"Returning getUsers($search, $limit, $offset, $callback): count("
480+
"Returning getUsers($search, $limit, $offset): count("
482481
. count(
483482
$users
484483
) . ")", ["app" => $this->appName]

0 commit comments

Comments
 (0)