adding an empty hidden field, to force some return value, if no account was selected for export_limit_excepted, without any return value nothing gets returned and therefore stored

This commit is contained in:
Ralf Becker 2011-08-30 08:16:51 +00:00
parent c0abff9612
commit bc739d8309

View File

@ -85,7 +85,8 @@ abstract class bo_merge
{
$accountsel = new uiaccountsel();
return $accountsel->selection('newsettings[export_limit_excepted]','export_limit_excepted',$config['export_limit_excepted'],'both',4);
return '<input type="hidden" value="" name="newsettings[export_limit_excepted]" />'.
$accountsel->selection('newsettings[export_limit_excepted]','export_limit_excepted',$config['export_limit_excepted'],'both',4);
}
/**