You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Here the control is done on the variable $filtersearchtext. If the value is "0", we won't reach the sql_replace() method, and the filter won't apply.
Maybe replacing this line with
isset($filtersearchtext)
or
isset($filtersearchtext) && $filtersearchtext != ''
The text was updated successfully, but these errors were encountered:
When adding a filter, you can filter on any text or value, except on the value "0"
moodle-block_configurablereports/components/filters/searchtext/plugin.class.php
Line 50 in f63cf94
Here the control is done on the variable $filtersearchtext. If the value is "0", we won't reach the sql_replace() method, and the filter won't apply.
Maybe replacing this line with
isset($filtersearchtext)
or
isset($filtersearchtext) && $filtersearchtext != ''
The text was updated successfully, but these errors were encountered: