Aug 7th, 2012, 9:03 AM
Did a bit of poking around an found the smarty function that builds the select list for which form the pre-parse script is for. That file is /global/smarty/plugins/function.forms_dropdown.php
The add.tpl, edit.tpl and index.tpl functions call this function to build the select list.
In these files the function itself is called with this parameter: is_multiple=true.
However, within the function it appears that this option is tested for true or false, but never implemented? Is there a reason why multiple="multiple" shouldn't be set for this select list in the pre-parser module?
The comment says "// for multiple-select dropdowns" but I can not see where that html attribute ever gets set?
The add.tpl, edit.tpl and index.tpl functions call this function to build the select list.
In these files the function itself is called with this parameter: is_multiple=true.
However, within the function it appears that this option is tested for true or false, but never implemented? Is there a reason why multiple="multiple" shouldn't be set for this select list in the pre-parser module?
The comment says "// for multiple-select dropdowns" but I can not see where that html attribute ever gets set?