?
avatar Hanmac
Hanmac
30 Oct 2015

there are still some access with $group->$options['group.label']
in JHtmlSelect#groupedlist in the if (is_object($group)) section

if (is_object($group))
            {
                // Sub-list is in a property of an object
                $subList = $group->$options['group.items'];

                if (isset($group->$options['group.label']))
                {
                    $label = $group->$options['group.label'];
                    $noGroup = false;
                }

                if (isset($options['group.id']) && isset($group->$options['group.id']))
                {
                    $id = $group->$options['group.id'];
                    $noGroup = false;
                }
            }

and in one line with:

$key2 = is_object($val) ? $val->$options['option.key'] : $val;

avatar Hanmac Hanmac - open - 30 Oct 2015
avatar zero-24 zero-24 - change - 30 Oct 2015
Labels Added: ?
avatar zero-24
zero-24 - comment - 30 Oct 2015

Do you have code to fix that issue? If yes you can send a pull reqwuest against the staging branch :smile:

If you need help you can have a look here: https://docs.joomla.org/Using_the_Github_UI_to_Make_Pull_Requests

avatar zero-24
zero-24 - comment - 30 Oct 2015

Closing as we have a Pull that is merged. Thanks :smile:

avatar zero-24 zero-24 - change - 30 Oct 2015
Status New Closed
Closed_Date 0000-00-00 00:00:00 2015-10-30 15:00:56
Closed_By zero-24
avatar zero-24 zero-24 - close - 30 Oct 2015

Add a Comment

Login with GitHub to post a comment