summaryrefslogtreecommitdiffstats
path: root/settings/apps.php
diff options
context:
space:
mode:
authorThomas Tanghus <thomas@tanghus.net>2012-06-25 05:02:01 +0200
committerThomas Tanghus <thomas@tanghus.net>2012-06-25 05:02:01 +0200
commitc3130919c2fa67caa5d7d52124b20388633c5cfa (patch)
treefa0528d40d592050933c3f88a1f8c549da751b80 /settings/apps.php
parent052bd8efbb39096867fdb2c0922b77f468a45ef9 (diff)
downloadnextcloud-server-c3130919c2fa67caa5d7d52124b20388633c5cfa.tar.gz
nextcloud-server-c3130919c2fa67caa5d7d52124b20388633c5cfa.zip
Allow direct link to app.
Diffstat (limited to 'settings/apps.php')
-rw-r--r--settings/apps.php2
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/apps.php b/settings/apps.php
index f85b28158f5..f4ae8b8d977 100644
--- a/settings/apps.php
+++ b/settings/apps.php
@@ -93,6 +93,8 @@ usort($apps, 'app_sort');
$tmpl = new OC_Template( "settings", "apps", "user" );
$tmpl->assign('apps',$apps, false);
+$appid = (isset($_GET['appid'])?strip_tags($_GET['appid']):'');
+$tmpl->assign('appid',$appid);
$tmpl->printPage();