Hello moderator!
I want to change the thresholds of "Save Filters" and "Save filters as shared" both to reporter.But how to modify them?I don't find it in the Administration Guide.Thank you very much!
How to modify the threshold of "Save Filters"?
Moderators: Developer, Contributor
How to modify the threshold of "Save Filters"?
- Attachments
-
- filters.PNG (7.67 KiB) Viewed 4710 times
Re: How to modify the threshold of "Save Filters"?
Code: Select all
/**
* Threshold needed to be able to use stored queries
* @global int $g_stored_query_use_threshold
*/
$g_stored_query_use_threshold = REPORTER;
/**
* Threshold needed to be able to create stored queries
* @global int $g_stored_query_create_threshold
*/
$g_stored_query_create_threshold = DEVELOPER;
/**
* Threshold needed to be able to create shared stored queries
* @global int $g_stored_query_create_shared_threshold
*/
$g_stored_query_create_shared_threshold = MANAGER;