diff options
author | Thomas Tanghus <thomas@tanghus.net> | 2012-06-25 05:02:01 +0200 |
---|---|---|
committer | Thomas Tanghus <thomas@tanghus.net> | 2012-06-25 05:02:01 +0200 |
commit | c3130919c2fa67caa5d7d52124b20388633c5cfa (patch) | |
tree | fa0528d40d592050933c3f88a1f8c549da751b80 /settings/apps.php | |
parent | 052bd8efbb39096867fdb2c0922b77f468a45ef9 (diff) | |
download | nextcloud-server-c3130919c2fa67caa5d7d52124b20388633c5cfa.tar.gz nextcloud-server-c3130919c2fa67caa5d7d52124b20388633c5cfa.zip |
Allow direct link to app.
Diffstat (limited to 'settings/apps.php')
-rw-r--r-- | settings/apps.php | 2 |
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(); |