]> BookStack Code Mirror - bookstack/blobdiff - app/Translation/FileLoader.php
Added control-upon-access of the default favicon.ico file
[bookstack] / app / Translation / FileLoader.php
index 775eefc472b72f1553253ee376cbd2fe50c63569..de1124046183186ffeca53be74b1e3db3399293d 100644 (file)
@@ -26,7 +26,8 @@ class FileLoader extends BaseLoader
         if (is_null($namespace) || $namespace === '*') {
             $themePath = theme_path('lang');
             $themeTranslations = $themePath ? $this->loadPath($themePath, $locale, $group) : [];
-            $originalTranslations =  $this->loadPath($this->path, $locale, $group);
+            $originalTranslations = $this->loadPath($this->path, $locale, $group);
+
             return array_merge($originalTranslations, $themeTranslations);
         }