Changeset 3471264
- Timestamp:
- 02/27/2026 05:35:09 PM (4 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin-menu-editor/trunk/customizables/Controls/RadioGroup.php
r3405870 r3471264 91 91 echo $beforeOption; 92 92 $labelClasses = ['ame-rg-option-label']; 93 if ( is set($this->choiceChildren[$option->value]) ) {93 if ( is_string($option->value) && isset($this->choiceChildren[$option->value]) ) { 94 94 $labelClasses[] = 'ame-rg-has-choice-child'; 95 95 } … … 129 129 echo $afterOption; 130 130 131 if ( is set($this->choiceChildren[$option->value]) ) {131 if ( is_string($option->value) && isset($this->choiceChildren[$option->value]) ) { 132 132 $childControl = $this->choiceChildren[$option->value]; 133 133 echo HtmlHelper::tag('span', ['class' => 'ame-rg-nested-control']);
Note: See TracChangeset
for help on using the changeset viewer.