1
0
mirror of https://github.com/e107inc/e107.git synced 2025-07-31 20:00:37 +02:00

Use custom option list instead of default. Default is used only if no custom option list.

This commit is contained in:
lonalore
2016-10-20 10:30:59 +02:00
parent fa56e1f5fe
commit dfab3627bc

View File

@@ -5996,7 +5996,7 @@ class e_form
<li class="dropdown-header nav-header">After submit:</li>
';
foreach($defsubmitopt as $k=>$v)
foreach($submitopt as $k=>$v)
{
$text .= "<li class='after-submit'>".$this->radio('__after_submit_action', $k, $selected == $k, "label=".$v)."</li>";
}