Prefer most specific select options, if available

This commit is contained in:
nathangray 2018-10-02 14:19:12 -06:00
parent c950d7b0c1
commit 13598f5342

View File

@ -438,6 +438,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)
{