I use the latest version of this plugin with PHP 5.4.13-1.
I always get a error, that "Multiple questionmarks are not supported".
This is, because line 732 doesn't explode on "?":
$tmp = explode('\?', $flags);
The result is alwas an array with one entry. If I delete the leading "\" an use
$tmp = explode('?', $flags);
instead, all works fine ;-)
I think, in explode delimiters must not be escaped.
I use the latest version of this plugin with PHP 5.4.13-1.
I always get a error, that "Multiple questionmarks are not supported".
This is, because line 732 doesn't explode on "?": $tmp = explode('\?', $flags); The result is alwas an array with one entry. If I delete the leading "\" an use $tmp = explode('?', $flags); instead, all works fine ;-)
I think, in explode delimiters must not be escaped.
Thanks and greetings!