mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-18 08:19:05 +01:00
LSlang: fix warning about return not True
This commit is contained in:
parent
75cbea9459
commit
3d49092262
1 changed files with 1 additions and 1 deletions
|
@ -221,7 +221,7 @@ class LSlang extends LSlog_staticLoggerClass {
|
||||||
* Only load in CLI context
|
* Only load in CLI context
|
||||||
***********************************************
|
***********************************************
|
||||||
*/
|
*/
|
||||||
if (php_sapi_name() != "cli") return;
|
if (php_sapi_name() != "cli") return true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* CLI generate_lang_file command
|
* CLI generate_lang_file command
|
||||||
|
|
Loading…
Reference in a new issue