]> git.mxchange.org Git - friendica-addons.git/blobdiff - libravatar/README.md
Merge pull request 'Tumblr: Fix #11551 and introduce NPF' (#1364) from heluecht/frien...
[friendica-addons.git] / libravatar / README.md
index 33c3679c94d921cf5d4feafad51e6f2330409d3b..4d5d4c309bd047c3ee029ad9e42ec40d05445df5 100644 (file)
@@ -23,14 +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.ini.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.ini.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"