- πΊπΈUnited States smustgrave
Currently going through the end of the queue to see what could still be relevant for D10.
Wondering if this is still a valid task?
D7:
function form_process_radios($element) {
...
$element['foo'] = 'bar';
...
return $element;
}
D8:
function form_process_radios(&$element) {
...
$element['foo'] = 'bar';
...
}
Postponed: needs info
9.5
Last updated
Changes an existing API or subsystem. Not backportable to earlier major versions, unless absolutely required to fix a critical bug.
Refactors an existing API or subsystem for consistency, performance, modularization, flexibility, third-party integration, etc. May imply an API change. Frequently used during the Code Slush phase of the release cycle.
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Currently going through the end of the queue to see what could still be relevant for D10.
Wondering if this is still a valid task?