summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorkondou <kondou@ts.unde.re>2013-09-02 17:07:38 +0200
committerkondou <kondou@ts.unde.re>2013-09-02 17:07:38 +0200
commite7e3f1b81a5026116ef0c9cd95a00fdd7ff6f5a2 (patch)
treefce3f0677d4009bd483150f38190846197912c88 /lib
parent14cc1cd4b8d9e121e4f21851bf281bd4b565fb22 (diff)
downloadnextcloud-server-e7e3f1b81a5026116ef0c9cd95a00fdd7ff6f5a2.tar.gz
nextcloud-server-e7e3f1b81a5026116ef0c9cd95a00fdd7ff6f5a2.zip
Fix some of @jancborchardt's complaints in oc_avatars
Diffstat (limited to 'lib')
-rw-r--r--lib/avatar.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/avatar.php b/lib/avatar.php
index 5ecce050d24..9b2a7fe07cf 100644
--- a/lib/avatar.php
+++ b/lib/avatar.php
@@ -46,7 +46,7 @@ class OC_Avatar {
public function set ($user, $data) {
if (\OC_Appconfig::getValue('files_encryption', 'enabled') === "yes") {
$l = \OC_L10N::get('lib');
- throw new \Exception($l->t("Custom avatars don't work with encryption yet"));
+ throw new \Exception($l->t("Custom profile pictures don't work with encryption yet"));
}
$view = new \OC\Files\View('/'.$user);