]> git.mxchange.org Git - friendica-addons.git/blobdiff - libravatar/README.md
Improved logging message
[friendica-addons.git] / libravatar / README.md
index bcc0f8243570c73ac1ed427d53f1850908edbf97..4d5d4c309bd047c3ee029ad9e42ec40d05445df5 100644 (file)
@@ -23,18 +23,21 @@ If no avatar was found for an email Libravatar can create some pseudo-random gen
 See examples at [Libravatar][1].
 
 ## Alternative Configuration
-Open the `config/local.config.php` file and add "libravatar" to the list of activated addons:
-
-    'system' => [
-        ...
-        'addon' => '...,libravatar'
-        ...
-    ]
-
-You can add one configuration variables for the addon to the `config/addon.config.php` file:
-
-    'libravatar' => [
-        'default_avatar' => 'identicon',
-    ],
+Open the `config/node.config.php` file and add "libravatar" to the list of activated addons:
+
+       'addons' => [
+               ...
+               'libravatar' => [
+                       admin => true,                  
+               ],
+       ]
+
+You can add one configuration variables for the addon to the `config/libravatar.config.php` file:
+
+       return [
+               'libravatar' => [
+                       'default_avatar' => 'identicon',
+               ],
+       ];
 
 [1]: http://wiki.libravatar.org/api/ "See API documentation at Libravatar for more information"