Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'ncp-web/L10N.php')
-rw-r--r--ncp-web/L10N.php9
1 files changed, 5 insertions, 4 deletions
diff --git a/ncp-web/L10N.php b/ncp-web/L10N.php
index 2fdf5434..d786413b 100644
--- a/ncp-web/L10N.php
+++ b/ncp-web/L10N.php
@@ -69,7 +69,6 @@ class L10N
function save($lang)
{
$cfg = 'ncp-web.cfg';
- $line = file_get_contents( $cfg );
$str = "LANGUAGE_=$lang";
return file_put_contents( $cfg , $str );
}
@@ -141,12 +140,14 @@ class L10N
function load_language_setting()
{
- $webui_config_file = 'ncp-web.cfg';
- $fh = fopen($webui_config_file, 'r');
+ $cfg = 'ncp-web.cfg';
+ if (!file_exists($cfg))
+ return "auto";
+ $fh = fopen($cfg, 'r');
if ($fh === false)
return "auto";
- $lang=file_get_contents($webui_config_file);
+ $lang=file_get_contents($cfg);
fclose($fh);
return ltrim($lang, 'LANGUAGE_=');
}