cosmocode / dokuwiki-plugin-tabbox

Create tabbed boxes in DokuWiki
5 stars 2 forks source link

data['hid'] is not defined in html_secedit_button() #18

Open chang-zhao opened 2 years ago

chang-zhao commented 2 years ago

For every <tabbox Some Title> I get a PHP Warning that $data['hid'] is not defined (array key 'hid' does not exist) in inc/html.php, line 114 - function html_secedit_button.

<tabbox Work folders>
...

<tabbox Wiki pages>
...

</tabbox>
chang-zhao commented 2 years ago

So I added if (array_key_exists('hid', $data)):

if (array_key_exists('hid', $data)) $data ['hid'] = strtolower($data['hid']);