Page 1 of 1

How to modify the threshold of "Save Filters"?

Posted: 08 Feb 2014, 02:49
by lchydp
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!

Re: How to modify the threshold of "Save Filters"?

Posted: 09 Feb 2014, 21:49
by atrol

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;