From 21c18cedc7638142a55cf9076e98db0c2f8707d3 Mon Sep 17 00:00:00 2001 From: Friendika Date: Mon, 15 Nov 2010 21:22:22 -0800 Subject: [PATCH] isolate translateable files --- boot.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/boot.php b/boot.php index c90d051305..f0d40544f4 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); }}