missing "app installed" info msg
This commit is contained in:
parent
ad6d28731d
commit
03e2d2ee8f
@ -23,8 +23,10 @@ function appman_post(&$a) {
|
|||||||
);
|
);
|
||||||
|
|
||||||
$_REQUEST['appid'] = app_install(local_user(),$arr);
|
$_REQUEST['appid'] = app_install(local_user(),$arr);
|
||||||
|
|
||||||
if(app_installed(local_user(),$arr))
|
if(app_installed(local_user(),$arr))
|
||||||
info( t('App installed.') . EOL);
|
info( t('App installed.') . EOL);
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -38,6 +40,8 @@ function appman_post(&$a) {
|
|||||||
|
|
||||||
if($_POST['install']) {
|
if($_POST['install']) {
|
||||||
app_install(local_user(),$papp);
|
app_install(local_user(),$papp);
|
||||||
|
if(app_installed(local_user(),$papp))
|
||||||
|
info( t('App installed.') . EOL);
|
||||||
}
|
}
|
||||||
|
|
||||||
if($_POST['delete']) {
|
if($_POST['delete']) {
|
||||||
|
Reference in New Issue
Block a user