]> git.mxchange.org Git - friendica.git/blobdiff - mod/apps.php
Merge pull request #2170 from fabrixxm/issue_1953
[friendica.git] / mod / apps.php
old mode 100755 (executable)
new mode 100644 (file)
index 8049b45..a821ef5
@@ -1,7 +1,14 @@
 <?php
 
 function apps_content(&$a) {
-       $title = t('Applications');
+    $privateaddons = get_config('config','private_addons');
+      if ($privateaddons === "1") {
+       if((! (local_user())))  {
+       info( t("You must be logged in to use addons. "));
+      return;};
+}
+
+      $title = t('Applications');
 
        if(count($a->apps)==0)
                notice( t('No installed applications.') . EOL);