How to modify the threshold of "Save Filters"?

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
lchydp
Posts: 38
Joined: 11 Apr 2013, 14:21
Location: China

How to modify the threshold of "Save Filters"?

Post 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!
Attachments
filters.PNG
filters.PNG (7.67 KiB) Viewed 4710 times
atrol
Site Admin
Posts: 8536
Joined: 26 Mar 2008, 21:37
Location: Germany

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

Post 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;
Please use Search before posting and read the Manual
Post Reply