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

github.com/nextcloud/richdocuments.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorVictor Dubiniuk <victor.dubiniuk@gmail.com>2014-08-23 22:43:10 +0400
committerVictor Dubiniuk <victor.dubiniuk@gmail.com>2014-08-23 22:43:28 +0400
commitb63560edaea059483ad11a78e1f1502446fe308c (patch)
tree6a96bf65fffc6a89f829b89e8d4f6dc82be08757 /lib
parentd9f49dec81a067db9382bd38139b6b2355b3b43e (diff)
Fix guest access
Diffstat (limited to 'lib')
-rw-r--r--lib/db/member.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/db/member.php b/lib/db/member.php
index a7a75e0e..9d70b843 100644
--- a/lib/db/member.php
+++ b/lib/db/member.php
@@ -36,7 +36,7 @@ class Member extends \OCA\Documents\Db{
protected $loadStatement = 'SELECT * FROM `*PREFIX*documents_member` WHERE `member_id`= ?';
public static function getGuestPostfix(){
- return '(' . Config::getL10n()->t('guest') . ')';
+ return '(' . \OCA\Documents\Config::getL10n()->t('guest') . ')';
}