[Pkg-owncloud-commits] [owncloud] 287/457: Catch NotFoundException and return no quota information which simply reflects the current state - no file storage has been initialized for the user.

David Prévot taffit at moszumanska.debian.org
Sun Jun 28 20:06:24 UTC 2015


This is an automated email from the git hooks/post-receive script.

taffit pushed a commit to branch stable8
in repository owncloud.

commit 5dc5b7f86df5ac4943a4e8cd66e93d559d9bf6ca
Author: Thomas Müller <thomas.mueller at tmit.eu>
Date:   Wed Jun 3 15:00:56 2015 +0200

    Catch NotFoundException and return no quota information which simply reflects the current state - no file storage has been initialized for the user.
---
 lib/private/encryption/manager.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/private/encryption/manager.php b/lib/private/encryption/manager.php
index 7a75195..4841533 100644
--- a/lib/private/encryption/manager.php
+++ b/lib/private/encryption/manager.php
@@ -151,7 +151,7 @@ class Manager implements IManager {
 			if (isset($this->encryptionModules[$moduleId])) {
 				return call_user_func($this->encryptionModules[$moduleId]['callback']);
 			} else {
-				$message = "Module with id: $moduleId does not exists.";
+				$message = "Module with id: $moduleId does not exist.";
 				$hint = $this->l->t('Module with id: %s does not exist. Please enable it in your apps settings or contact your administrator.', [$moduleId]);
 				throw new Exceptions\ModuleDoesNotExistsException($message, $hint);
 			}

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-owncloud/owncloud.git



More information about the Pkg-owncloud-commits mailing list