mirror of
https://gitlab.com/davical-project/davical.git
synced 2026-08-22 17:16:06 +00:00
Warn about use of deprecated setting name.
This commit is contained in:
parent
25fc29a79c
commit
b55b8c4a01
@ -77,6 +77,11 @@ else {
|
||||
include_once("davical_configuration_missing.php");
|
||||
exit;
|
||||
}
|
||||
if ( isset($c->deny_put_collection) ) {
|
||||
@dbg_error_log( "WARN", "Deprecated 'deny_put_collection' configuration item renamed to 'readonly_webdav_collections'" );
|
||||
$c->readonly_webdav_collections = $c->deny_put_collection;
|
||||
}
|
||||
|
||||
if ( !isset($c->page_title) ) $c->page_title = $c->system_name;
|
||||
|
||||
if ( count($c->dbg) > 0 ) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user