From 2c4b57ef5000c21d18b34897ab1d6c10a4fc28b6 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Thu, 27 Apr 2023 23:36:03 -0400 Subject: [PATCH] Add example to multiple admin question in FAQ --- doc/FAQ-admin.md | 8 ++++++-- doc/de/FAQ-admin.md | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/doc/FAQ-admin.md b/doc/FAQ-admin.md index 82caa940c..94cef1627 100644 --- a/doc/FAQ-admin.md +++ b/doc/FAQ-admin.md @@ -36,7 +36,11 @@ Have a look into your config/local.config.php and fix your email addres Yes. You just have to list more then one email address in the config/local.config.php file. -The listed emails need to be separated by a comma. +The listed emails need to be separated by a comma like this: + +```php +'admin_email' => 'mail1@example.com,mail2@example.com', +``` ### The Database structure seems not to be updated. What can I do? @@ -48,4 +52,4 @@ You can manually execute the structure update from the CLI in the base directory bin/console dbstructure update -if there occur any errors, please contact the [support forum](https://forum.friendi.ca/profile/helpers). \ No newline at end of file +if there occur any errors, please contact the [support forum](https://forum.friendi.ca/profile/helpers). diff --git a/doc/de/FAQ-admin.md b/doc/de/FAQ-admin.md index 5b355e142..14528c2d6 100644 --- a/doc/de/FAQ-admin.md +++ b/doc/de/FAQ-admin.md @@ -39,7 +39,11 @@ Bitte aktualisiere deine E-Mail Adresse in der config/local.config.php Ja. Du kannst in der config/local.config.php Datei mehrere E-Mail Adressen auflisten. -Die aufgelisteten Adressen werden mit Kommata von einander getrennt. +Die aufgelisteten Adressen werden wie folgt durch Kommas voneinander getrennt: + +```php +'admin_email' => 'mail1@example.com,mail2@example.com', +``` ### Die Datenbank Struktur schein nicht aktuell zu sein. Was kann ich tun? @@ -52,4 +56,4 @@ Starte dazu bitte vom Grundverzeichnis deiner Friendica Instanz folgendes Komman bin/console dbstructure update -sollten bei der Ausführung Fehler auftreten, kontaktiere bitte das [Support Forum](https://forum.friendi.ca/profile/helpers). \ No newline at end of file +sollten bei der Ausführung Fehler auftreten, kontaktiere bitte das [Support Forum](https://forum.friendi.ca/profile/helpers).