Skip to content

Commit 9a3d59e

Browse files
committed
Configuration page patch.
Changelog excerpt: - At the front-end configuration page, configuration directives relying on specific extensions (specifically, at this time, the supplementary cache options) will now include a notice as to whether the extension relied upon is available.
1 parent eecfe4f commit 9a3d59e

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,7 @@ __*Why "v3.0.0" instead of "v1.0.0?"*__ Prior to phpMussel v3, the "phpMussel Co
6161
[2021.10.30; Maikuolan]: Code-style cleanup: Public before private properties, magic before public before private methods.
6262

6363
[2021.10.31; New Feature; Maikuolan]: Added the ability to segregate cache data on the basis of prefixes specified by the instance. This could be useful for when different installations are utilising the same caching mechanisms at the same server.
64+
65+
### v3.3.1
66+
67+
[2021.11.27; Maikuolan]: At the front-end configuration page, configuration directives relying on specific extensions (specifically, at this time, the supplementary cache options) will now include a notice as to whether the extension relied upon is available.

assets/config.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# License: GNU/GPLv2
88
# @see LICENSE.txt
99
#
10-
# This file: Configuration defaults file (last modified: 2021.10.30).
10+
# This file: Configuration defaults file (last modified: 2021.11.27).
1111
##/
1212

1313
core:
@@ -391,15 +391,23 @@ supplementary_cache_options:
391391
enable_apcu:
392392
type: "bool"
393393
default: true
394+
required:
395+
apcu: "APCu"
394396
enable_memcached:
395397
type: "bool"
396398
default: false
399+
required:
400+
memcached: "Memcached"
397401
enable_redis:
398402
type: "bool"
399403
default: false
404+
required:
405+
redis: "Redis"
400406
enable_pdo:
401407
type: "bool"
402408
default: false
409+
required:
410+
pdo: "PDO"
403411
memcached_host:
404412
type: "string"
405413
default: "localhost"

0 commit comments

Comments
 (0)