aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-05-25 22:25:13 -0700
committerfriendica <info@friendica.com>2014-05-25 22:25:13 -0700
commit03e2d2ee8f048faa3328a2fdbb6c252726284db4 (patch)
treee20d489541c04740c938f3c919782d2312e95b40 /mod
parentad6d28731d975ed2e902e058cbb05a7e88d77ac9 (diff)
downloadvolse-hubzilla-03e2d2ee8f048faa3328a2fdbb6c252726284db4.tar.gz
volse-hubzilla-03e2d2ee8f048faa3328a2fdbb6c252726284db4.tar.bz2
volse-hubzilla-03e2d2ee8f048faa3328a2fdbb6c252726284db4.zip
missing "app installed" info msg
Diffstat (limited to 'mod')
-rw-r--r--mod/appman.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/appman.php b/mod/appman.php
index 49adcd7fa..a782cb0eb 100644
--- a/mod/appman.php
+++ b/mod/appman.php
@@ -23,8 +23,10 @@ function appman_post(&$a) {
);
$_REQUEST['appid'] = app_install(local_user(),$arr);
+
if(app_installed(local_user(),$arr))
info( t('App installed.') . EOL);
+
return;
}
@@ -38,6 +40,8 @@ function appman_post(&$a) {
if($_POST['install']) {
app_install(local_user(),$papp);
+ if(app_installed(local_user(),$papp))
+ info( t('App installed.') . EOL);
}
if($_POST['delete']) {