just found something interesting about PHP code standard:
Line termination follows the Unix text file convention. Lines must end with a single linefeed (LF) character. Linefeed characters are represented as ordinal 10, or hexadecimal 0x0A.
So this is not a bug. As php developper, we need to make sure we follow standard.
ok I found the issue. It’s due to type of used carriage return.
On unix system -> LF
On windows system -> CR LF
When I have converted my file to use unix carriage return, it works.
The plugin is Unix supported but not windows. That’s a bug I guess.
Hello!
What was finally the problem? I got the same behavior.
Thx!