diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-20 13:43:29 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2014-10-29 10:09:12 +0100 |
commit | a589d61b78fbfedad8fcf3ee59522b2e95de48ed (patch) | |
tree | 52966755f41956bce94555975bcf0f2cae6b1236 /lib/private/util.php | |
parent | ec1a73fab9aa6b71b502ee45f4d0dd4f20661930 (diff) | |
download | nextcloud-server-a589d61b78fbfedad8fcf3ee59522b2e95de48ed.tar.gz nextcloud-server-a589d61b78fbfedad8fcf3ee59522b2e95de48ed.zip |
in case a translation javascript is not found we no longer bail out
remove translation.php
Diffstat (limited to 'lib/private/util.php')
-rw-r--r-- | lib/private/util.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/util.php b/lib/private/util.php index 5105bb22931..9b8a7a5bc40 100644 --- a/lib/private/util.php +++ b/lib/private/util.php @@ -363,7 +363,7 @@ class OC_Util { if (!empty($application)) { self::$scripts[] = "$application/l10n/$languageCode"; } else { - self::$scripts[] = "js/$languageCode"; + self::$scripts[] = "l10n/$languageCode"; } } |