mirror of
https://github.com/getgrav/grav.git
synced 2025-02-20 19:56:53 +01:00
set clear_images_by_default to false by default
This commit is contained in:
parent
c56f9f3277
commit
7f23b088a4
|
|
@ -1,6 +1,8 @@
|
|||
# v1.7.16
|
||||
## mm/dd/2021
|
||||
|
||||
1. [](#improved)
|
||||
* Set `cache.clear_images_by_default` to `false` by default
|
||||
1. [](#bugfix)
|
||||
* Improve Plugin and Theme initialization to fix PHP8 bug [#3368](https://github.com/getgrav/grav/issues/3368)
|
||||
* Fixed `pathinfo()` twig filter in PHP 7
|
||||
|
|
|
|||
|
|
@ -646,7 +646,7 @@ form:
|
|||
type: toggle
|
||||
label: PLUGIN_ADMIN.CLEAR_IMAGES_BY_DEFAULT
|
||||
help: PLUGIN_ADMIN.CLEAR_IMAGES_BY_DEFAULT_HELP
|
||||
highlight: 1
|
||||
highlight: 0
|
||||
options:
|
||||
1: PLUGIN_ADMIN.YES
|
||||
0: PLUGIN_ADMIN.NO
|
||||
|
|
|
|||
|
|
@ -96,7 +96,7 @@ cache:
|
|||
purge_at: '0 4 * * *' # How often to purge old file cache (using new scheduler)
|
||||
clear_at: '0 3 * * *' # How often to clear cache (using new scheduler)
|
||||
clear_job_type: 'standard' # Type to clear when processing the scheduled clear job `standard`|`all`
|
||||
clear_images_by_default: true # By default grav will include processed images in cache clear, this can be disabled
|
||||
clear_images_by_default: false # By default grav will include processed images in cache clear, this can be disabled
|
||||
cli_compatibility: false # Ensures only non-volatile drivers are used (file, redis, memcache, etc.)
|
||||
lifetime: 604800 # Lifetime of cached data in seconds (0 = infinite)
|
||||
gzip: false # GZip compress the page output
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user