diff options
author | friendica <info@friendica.com> | 2014-05-25 22:25:13 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-05-25 22:25:13 -0700 |
commit | 03e2d2ee8f048faa3328a2fdbb6c252726284db4 (patch) | |
tree | e20d489541c04740c938f3c919782d2312e95b40 /mod | |
parent | ad6d28731d975ed2e902e058cbb05a7e88d77ac9 (diff) | |
download | volse-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.php | 4 |
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']) { |