giterlizzi / dokuwiki-plugin-bootswrapper

Bootstrap Wrapper for DokuWiki
GNU General Public License v2.0
35 stars 22 forks source link

Accordion 'collapsed' attribute not working #132

Open idssound opened 3 years ago

idssound commented 3 years ago

Hi, <accordion collpased="true"> is not working as expected to start accordion in all-collapsed status.
There seems to be a duplication of $pos in line 45 of Accordion.php.

It seems to work after changing list($state, $match, $pos, $pos, $attributes) = $data; to list($state, $match, $pos, $attributes) = $data;.