#
7234bfb1 |
| 13-Sep-2023 |
splitbrain <splitbrain@users.noreply.github.com> |
Automatic code style fixes
|
#
0549dcc5 |
| 13-Jan-2022 |
Andreas Gohr <andi@splitbrain.org> |
PHP code sniffer autofixes
|
#
d6d97f60 |
| 09-Apr-2020 |
Anna Dabrowska <dabrowska@cosmocode.de> |
Automatic coding style fixes
|
#
ee983135 |
| 02-Jun-2017 |
Michael Große <grosse@cosmocode.de> |
Fix multiple inputs in one label: it's invalid
Multiple inputs within a single label in invalid HTML. This bug can not only occur in multi-fields but also in plugin-provided single fields which m
Fix multiple inputs in one label: it's invalid
Multiple inputs within a single label in invalid HTML. This bug can not only occur in multi-fields but also in plugin-provided single fields which may contain multiple input-fields which are then only combined by javascript.
Thus, we provide an id which every type can assign to the edit-field best suited. For multi-types this is usually the new-input-template.
Fixes #292
show more ...
|
#
7b5927ea |
| 20-Sep-2016 |
Michael Grosse <grosse@cosmocode.de> |
Do not apply rawValue to raw values
This should affect #140 and hence SPR-609
|
#
c0230d2c |
| 24-Aug-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Always use raw values for editors
This is another attempt to fix #140. The valueEditor() and multiValueEditor() now always expect raw values to be passed. The Value class was adjusted accordingly. I
Always use raw values for editors
This is another attempt to fix #140. The valueEditor() and multiValueEditor() now always expect raw values to be passed. The Value class was adjusted accordingly. It now allows to set the raw value (which is what we get from POST). If done, the Value object is treated as a rawonly Value that will throw an exception when you try to access value or displayvalue.
show more ...
|
#
79d22ad4 |
| 27-Jul-2016 |
Michael Grosse <grosse@cosmocode.de> |
Clean values in multiValueEditor, not in valueEditor
Since rawValue expects a single value it may not be able to handle multiple concatinated values.
This caused an error for the pagetype in a mult
Clean values in multiValueEditor, not in valueEditor
Since rawValue expects a single value it may not be able to handle multiple concatinated values.
This caused an error for the pagetype in a multi value field with usetitles enabled.
show more ...
|
#
ba766201 |
| 28-Apr-2016 |
Andreas Gohr <gohr@cosmocode.de> |
Use DokuWiki new autoloader for class files
No longer do we need to register our own autoloader. Namespace had to be vendor prefixed.
|
#
5c36a1f6 |
| 01-Mar-2016 |
Andreas Gohr <gohr@cosmocode.de> |
introduced new abstract type to streamline multiedit fields
|