]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Nodeinfo.php
Fix: Image descriptions now work again
[friendica.git] / src / Model / Nodeinfo.php
index 7cde259538c95b26ced1c3f0ffe3b8bc832305bc..d2e168fa5961788641f32905e84fe7a7158ec8b8 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Model;
 
@@ -24,20 +43,7 @@ class Nodeinfo
                // If the addon 'statistics_json' is enabled then disable it and activate nodeinfo.
                if (Addon::isEnabled('statistics_json')) {
                        $config->set('system', 'nodeinfo', true);
-
-                       $addon = 'statistics_json';
-                       $addons = $config->get('system', 'addon');
-
-                       if ($addons) {
-                               $addons_arr = explode(',', str_replace(' ', '', $addons));
-
-                               $idx = array_search($addon, $addons_arr);
-                               if ($idx !== false) {
-                                       unset($addons_arr[$idx]);
-                                       Addon::uninstall($addon);
-                                       $config->set('system', 'addon', implode(', ', $addons_arr));
-                               }
-                       }
+                       Addon::uninstall('statistics_json');
                }
 
                if (empty($config->get('system', 'nodeinfo'))) {