Skip to content

Commit

Permalink
fix/#786_req_category_and_prohibited_category_showing_deleted_terms (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
richaferry authored Oct 10, 2024
1 parent 652d8af commit a70fff5
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion core/Requirement/Prohibited_categories.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Prohibited_categories extends Base_multiple
*
* @var int
*/
private $cache_expiration = 10 * MINUTE_IN_SECONDS;
private $cache_expiration = 1 * MINUTE_IN_SECONDS;

/**
* Flag to check if hooks have been initialized
Expand Down
2 changes: 1 addition & 1 deletion core/Requirement/Prohibited_tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Prohibited_tags extends Base_multiple
*
* @var int
*/
private $cache_expiration = 10 * MINUTE_IN_SECONDS;
private $cache_expiration = 1 * MINUTE_IN_SECONDS;

/**
* Flag to track if hooks have been initialized
Expand Down
2 changes: 1 addition & 1 deletion core/Requirement/Required_categories.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Required_categories extends Base_multiple
*
* @var int
*/
private $cache_expiration = 10 * MINUTE_IN_SECONDS;
private $cache_expiration = 1 * MINUTE_IN_SECONDS;

/**
* Flag to check if hooks have been initialized
Expand Down
2 changes: 1 addition & 1 deletion core/Requirement/Required_tags.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ class Required_tags extends Base_multiple
*
* @var int
*/
private $cache_expiration = 10 * MINUTE_IN_SECONDS;
private $cache_expiration = 1 * MINUTE_IN_SECONDS;

/**
* Flag to check if hooks have been initialized
Expand Down

0 comments on commit a70fff5

Please sign in to comment.