unacms / una

UNA Community Management System
https://unacms.com
MIT License
265 stars 153 forks source link

Forms: Different processing for cases with and without Pass parameters. #4360

Closed AntonLV closed 1 year ago

AntonLV commented 1 year ago

In BxDolForm::getCleanValue method:

if ($a && isset($a['db']['pass']))
    $oRv = $oChecker->get (**$a['name']**, ...);
else
    $oRv =  $oChecker->get (**$sName**);

It causes problems in Extended Search when search by range is used. In another words the problem appears for inputs with []

AntonLV commented 1 year ago

Need to track whether the fix affects something or not.