]> source.dussan.org Git - nextcloud-server.git/commitdiff
ctor of OC_L10N requires the app name
authorThomas Mueller <thomas.mueller@tmit.eu>
Tue, 11 Dec 2012 13:07:01 +0000 (14:07 +0100)
committerThomas Mueller <thomas.mueller@tmit.eu>
Tue, 11 Dec 2012 13:07:01 +0000 (14:07 +0100)
apps/files_external/lib/config.php

index e37b610000ac8174d6c5a48530664973a7b49ad7..c0864dc50d2275121868c872f79ff3612aa4c963 100755 (executable)
@@ -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 />';