Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/user_sql.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcin Łojewski <marcin.lojewski@mlojewski.me>2020-02-02 22:51:10 +0300
committerMarcin Łojewski <marcin.lojewski@mlojewski.me>2020-02-02 22:51:10 +0300
commit171add734381cbb5673c8a92f83edcc61f737c39 (patch)
tree47facc1c7f9b4fef8f7f008c3c02d0472beba36e
parent2fee2f340aff4fb2b4ee740d0a7158c739efff0f (diff)
parent683d44c98bc285ba2da14a240dac320601d5100f (diff)
Hotfix version 4.4.1v4.4.1
-rw-r--r--CHANGELOG.md5
-rw-r--r--appinfo/info.xml2
-rw-r--r--lib/Backend/UserBackend.php9
3 files changed, 10 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 13ce920..127ab4a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
+## [4.4.1] - 2020-02-02
+### Fixed
+- Issue generating 'Object of class Closure could not be converted to string' log message
+
## [4.4.0] - 2019-10-09
### Added
- Users can confirm passwords
@@ -134,6 +138,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Changed
- Supported version of ownCloud, Nextcloud: ownCloud 10, Nextcloud 12
+[4.4.1]: https://github.com/nextcloud/user_sql/compare/v4.4.0...v4.4.1
[4.4.0]: https://github.com/nextcloud/user_sql/compare/v4.3.0...v4.4.0
[4.3.0]: https://github.com/nextcloud/user_sql/compare/v4.2.1...v4.3.0
[4.2.1]: https://github.com/nextcloud/user_sql/compare/v4.2.0...v4.2.1
diff --git a/appinfo/info.xml b/appinfo/info.xml
index 2b9e4b0..c8420b8 100644
--- a/appinfo/info.xml
+++ b/appinfo/info.xml
@@ -8,7 +8,7 @@
Retrieve the users and groups info. Allow the users to change their passwords.
Sync the users' email addresses with the addresses stored by Nextcloud.
</description>
- <version>4.4.0</version>
+ <version>4.4.1</version>
<licence>agpl</licence>
<author>Marcin Łojewski</author>
<author>Andreas Böhler</author>
diff --git a/lib/Backend/UserBackend.php b/lib/Backend/UserBackend.php
index 22dc213..a97e095 100644
--- a/lib/Backend/UserBackend.php
+++ b/lib/Backend/UserBackend.php
@@ -437,11 +437,10 @@ final class UserBackend extends ABackend implements
/**
* @inheritdoc
*/
- public function getUsers(
- $search = "", $limit = null, $offset = null, $callback = null
- ) {
+ public function getUsers($search = "", $limit = null, $offset = null, $callback = null)
+ {
$this->logger->debug(
- "Entering getUsers($search, $limit, $offset, $callback)",
+ "Entering getUsers($search, $limit, $offset)",
["app" => $this->appName]
);
@@ -478,7 +477,7 @@ final class UserBackend extends ABackend implements
$this->cache->set($cacheKey, $users);
$this->logger->debug(
- "Returning getUsers($search, $limit, $offset, $callback): count("
+ "Returning getUsers($search, $limit, $offset): count("
. count(
$users
) . ")", ["app" => $this->appName]