mirror of
https://github.com/moodle/moodle.git
synced 2025-04-07 01:12:42 +02:00
MDL-81776 reportbuilder: Check tagarea enabled when check availability
- When checking availability for a column/filter we need to assert tagarea is enabled because it can return also null value.
This commit is contained in:
parent
67b2c43225
commit
45b43d137f
@ -181,7 +181,7 @@ class reports_list extends system_report {
|
||||
AND ti.itemid = {$tablealias}.id
|
||||
)", 'tags')
|
||||
->set_is_sortable(true)
|
||||
->set_is_available(core_tag_tag::is_enabled('core_reportbuilder', 'reportbuilder_report'))
|
||||
->set_is_available(core_tag_tag::is_enabled('core_reportbuilder', 'reportbuilder_report') === true)
|
||||
->add_callback(static function(?string $tags): string {
|
||||
return implode(', ', array_map(static function(string $tag): string {
|
||||
[$name, $rawname] = explode('|', $tag);
|
||||
@ -265,7 +265,7 @@ class reports_list extends system_report {
|
||||
'component' => 'core_reportbuilder',
|
||||
'itemtype' => 'reportbuilder_report',
|
||||
])
|
||||
->set_is_available(core_tag_tag::is_enabled('core_reportbuilder', 'reportbuilder_report'))
|
||||
->set_is_available(core_tag_tag::is_enabled('core_reportbuilder', 'reportbuilder_report') === true)
|
||||
);
|
||||
|
||||
// Time created filter.
|
||||
|
Loading…
x
Reference in New Issue
Block a user