mirror of
https://github.com/maxpozdeev/mytinytodo.git
synced 2026-03-11 08:55:27 +00:00
fix for prev commit
This commit is contained in:
parent
15fb7f86b0
commit
5f022b2674
1 changed files with 1 additions and 1 deletions
|
|
@ -27,7 +27,7 @@ class Lang
|
|||
|
||||
//check if json file exists
|
||||
if ( self::langExists($code) ) {
|
||||
$jsonString = file_get_contents( $this->langDir(). "{$code}.json" );
|
||||
$jsonString = file_get_contents( self::$langDir. "{$code}.json" );
|
||||
$lang->loadJsonString($code, $jsonString);
|
||||
}
|
||||
else if ( $die == 0 ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue