diff options
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/apps.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index d25ca1bc7fb..7642ab7fb89 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -10,7 +10,7 @@ <ul id="leftcontent"> <?php foreach($_['apps'] as $app):?> <li <?php if($app['active']) echo 'class="active"'?> data-id="<?php echo $app['id'] ?>"> - <?php echo $app['name'] ?> + <a href="?appid=<?php echo $app['id'] ?>"><?php echo $app['name'] ?></a> <span class="hidden"> <?php OC_JSON::encodedPrint($app,false) ?> </span> |