X-Git-Url: https://git.mxchange.org/?p=shipsimu.git;a=blobdiff_plain;f=inc%2Flanguage.php;h=b9250e59738f4b3b1921532b1facca6b7694ffcd;hp=60c9e28ebc9bbc667a4d4796a5bbe57a74737088;hb=abb8bf6be9f5238f8a4552707bcb190f0dbf0b7a;hpb=b226bbefe6bc09bcd75432c3c3ba32bf7da45b71 diff --git a/inc/language.php b/inc/language.php index 60c9e28..b9250e5 100644 --- a/inc/language.php +++ b/inc/language.php @@ -2,9 +2,9 @@ /** * Try to initializes the language system * - * @author Roland Haeder + * @author Roland Haeder * @version 0.0.0 - * @copyright Copyright(c) 2007, 2008 Roland Haeder, this is free software + * @copyright Copyright (c) 2007, 2008 Roland Haeder, this is free software * @license GNU GPL 3.0 or any newer version * * This program is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ */ try { $lang = LanguageSystem::createLanguageSystem(sprintf("%s%s", - PATH, + $cfg->readConfig('base_path'), FrameworkConfiguration::getInstance()->readConfig('lang_base_path') )); } catch (LanguagePathIsEmptyException $e) { @@ -43,5 +43,8 @@ try { )); } +// Is the app variable there and valid? +if (is_object($app)) $app->setLanguageInstance($lang); + // [EOF] ?>