getk2 / k2-example-plugin

Example K2 Plugin (for developers)
GNU General Public License v2.0
8 stars 4 forks source link

checkboxes field problem #1

Closed paulories closed 10 years ago

paulories commented 10 years ago

rendering of checkboxes is wrong. Look to name [][]

The plugin construct like []]:

input type="checkbox" value="ex" name="plugins[exampledemo[]]" id="demo0"

The correct is ][]:

input type="checkbox" value="ex" name="plugins[exampledemo][]" id="demo0"

kavadas commented 10 years ago

Fixed with https://github.com/joomlaworks/k2/commit/11169b5149af778bd617b1c1747edb48d757cde2 . Thank you for your feedback.