* change for license.

This commit is contained in:
wangyidong
2018-03-02 10:47:36 +08:00
parent 2cde802376
commit 973d0e258f
5 changed files with 23 additions and 29 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ class installModel extends model
$licenseCN = file_get_contents($this->app->getBasePath() . 'doc/LICENSE.CN');
$licenseEN = file_get_contents($this->app->getBasePath() . 'doc/LICENSE.EN');
if($clientLang == 'zh' or $clientLang == 'zh-tw') return $licenseCN . $licenseEN;
if($clientLang == 'zh-cn' or $clientLang == 'zh-tw') return $licenseCN . $licenseEN;
return $licenseEN . $licenseCN;
}