diff options
author | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-12-11 14:07:01 +0100 |
---|---|---|
committer | Thomas Mueller <thomas.mueller@tmit.eu> | 2012-12-11 14:07:01 +0100 |
commit | e427197dce2e8e43000e806ca4b13bfbb841436a (patch) | |
tree | a8ffea6dca5bbe0d0616121973345fecb00036e1 /apps/files_external | |
parent | e55a3637ce867d84c6de8bffe9898d8444bee212 (diff) | |
download | nextcloud-server-e427197dce2e8e43000e806ca4b13bfbb841436a.tar.gz nextcloud-server-e427197dce2e8e43000e806ca4b13bfbb841436a.zip |
ctor of OC_L10N requires the app name
Diffstat (limited to 'apps/files_external')
-rwxr-xr-x | apps/files_external/lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index e37b610000a..c0864dc50d2 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -429,7 +429,7 @@ class OC_Mount_Config { * check dependencies */ public static function checkDependencies() { - $l= new OC_L10N; + $l= new OC_L10N('files_external'); $txt=''; if(!OC_Mount_Config::checksmbclient()) $txt.=$l->t('<b>Warning:</b> "smbclient" is not installed. Mounting of CIFS/SMB shares is not possible. Please ask your system administrator to install it.').'<br />'; if(!OC_Mount_Config::checkphpftp()) $txt.=$l->t('<b>Warning:</b> The FTP support in PHP is not enabled or installed. Mounting of FTP shares is not possible. Please ask your system administrator to install it.').'<br />'; |