aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2010-11-15 21:22:22 -0800
committerFriendika <info@friendika.com>2010-11-15 21:22:22 -0800
commit21c18cedc7638142a55cf9076e98db0c2f8707d3 (patch)
treeba80aa2813266c547f133dc026c815718b60e3f3 /boot.php
parent5d474177113f563c5c4d299485e0edb27d061f8a (diff)
downloadvolse-hubzilla-21c18cedc7638142a55cf9076e98db0c2f8707d3.tar.gz
volse-hubzilla-21c18cedc7638142a55cf9076e98db0c2f8707d3.tar.bz2
volse-hubzilla-21c18cedc7638142a55cf9076e98db0c2f8707d3.zip
isolate translateable files
Diffstat (limited to 'boot.php')
-rw-r--r--boot.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index c90d05130..f0d40544f 100644
--- a/boot.php
+++ b/boot.php
@@ -1295,7 +1295,9 @@ function load_view_file($s) {
$b = basename($s);
$d = dirname($s);
$lang = get_config('system','language');
- if($lang && file_exists("$d/$lang/$b"))
+ if($lang === false)
+ $lang = 'en';
+ if(file_exists("$d/$lang/$b"))
return file_get_contents("$d/$lang/$b");
return file_get_contents($s);
}}