lupo49 / dokuwiki-plugin-dir

Dir plugin for DokuWiki
http://www.dokuwiki.org/plugin:dir
6 stars 10 forks source link

Error in "parseOptions E" #10

Closed matthiasvogt closed 11 years ago

matthiasvogt commented 11 years ago

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!

lupo49 commented 11 years ago

Thanks