Prefer most specific select options, if available

This commit is contained in:
nathangray 2018-10-02 14:19:12 -06:00
parent e6c73af4d0
commit fa2469b0e3

View File

@ -425,6 +425,12 @@ class Select extends Etemplate\Widget
$options += self::$request->sel_options[$name];
}
// Check for non-trivial name like a[b]
if(!$options)
{
$options = (array)self::get_array(self::$request->sel_options,$name);
}
// Check for base of name in root of sel_options
if(!$options)
{