From 18531659bcae7556954b3ac8da7d0fe89f288b94 Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Tue, 21 Oct 2025 16:49:05 +0200 Subject: [PATCH 1/2] docs: avoid indention error in converted config Signed-off-by: Daniel Kesselberg --- config/config.sample.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 7ccfda3e96b..0dc3e9c9592 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -2370,7 +2370,8 @@ $CONFIG = [ /** * Allow creation of external storages of type "Local" via the web interface and * APIs. When disabled, local storages can still be created using the occ command:: - * occ files_external:create /mountpoint local null::null -c datadir=/path/to/data + * + * occ files_external:create /mountpoint local null::null -c datadir=/path/to/data * * Defaults to ``true`` */ @@ -2530,7 +2531,8 @@ $CONFIG = [ /** * Set the data fingerprint for the current data served. Used by clients to * detect if a backup has been restored. Update this by running:: - * occ maintenance:data-fingerprint + * + * occ maintenance:data-fingerprint * * Changing or deleting this value may cause connected clients to stall until * conflicts are resolved. From 48cbedc002951343832b9938da5524ceaf3851c7 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 23 Oct 2025 15:22:31 +0200 Subject: [PATCH 2/2] fix(sample-config): Fix syntax of deprecation Signed-off-by: Joas Schilling --- config/config.sample.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/config.sample.php b/config/config.sample.php index 0dc3e9c9592..411e46c46c4 100644 --- a/config/config.sample.php +++ b/config/config.sample.php @@ -51,7 +51,7 @@ $CONFIG = [ * all your passwords. This example is for documentation only, and you should * never use it. * - * @deprecated This salt is deprecated and only used for legacy-compatibility, + * @deprecated 9.0.0 This salt is deprecated and only used for legacy-compatibility, * developers should *NOT* use this value for anything nowadays. */ 'passwordsalt' => '', @@ -1580,7 +1580,8 @@ $CONFIG = [ * Sort groups in the user settings by name instead of the user count * * By enabling this, the user count beside the group name is disabled as well. - * @deprecated since Nextcloud 29 - Use the frontend instead or set the app config value ``group.sortBy`` for ``core`` to ``2`` + * + * @deprecated 29.0.0 Use the frontend instead or set the app config value ``group.sortBy`` for ``core`` to ``2`` */ 'sort_groups_by_name' => false,