diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-05 09:27:47 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-05-05 09:27:47 +0200 |
commit | a7deba74a7a42cd20d8ad9604ed8a83e78ff0bb6 (patch) | |
tree | 9125c076d10bbb8b417dc3c5f1a90df4fc6cf929 /settings | |
parent | b60dcd91bbf6e96c71fee92cf57296a8417a5cba (diff) | |
parent | 711282422902bd6d2fa5c47d28d4a83fdc1b0470 (diff) | |
download | nextcloud-server-a7deba74a7a42cd20d8ad9604ed8a83e78ff0bb6.tar.gz nextcloud-server-a7deba74a7a42cd20d8ad9604ed8a83e78ff0bb6.zip |
Merge pull request #16031 from owncloud/fix-15953-master
No clickable app for local apps
Diffstat (limited to 'settings')
-rw-r--r-- | settings/templates/apps.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php index fb25917ee59..6bbde71df97 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -41,10 +41,7 @@ script( <div class="section apps-experimental"> <h2><?php p($l->t('Experimental applications ahead')) ?></h2> <p> - <?php p($l->t('Experimental apps are not checked for security ' . - 'issues, new or known to be unstable and under heavy ' . - 'development. Installing them can cause data loss or security ' . - 'breaches.')) ?> + <?php p($l->t('Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches.')) ?> </p> </div> {{/if}} @@ -54,7 +51,13 @@ script( <div class="app-image{{#if previewAsIcon}} app-image-icon{{/if}} hidden"> </div> {{/if}} - <h2 class="app-name"><a href="{{detailpage}}" target="_blank">{{name}}</a></h2> + <h2 class="app-name"> + {{#if detailpage}} + <a href="{{detailpage}}" target="_blank">{{name}}</a> + {{else}} + {{name}} + {{/if}} + </h2> <div class="app-version"> {{version}}</div> {{#if profilepage}}<a href="{{profilepage}}" target="_blank" rel="noreferrer">{{/if}} <div class="app-author"><?php p($l->t('by')); ?> {{author}} @@ -140,10 +143,7 @@ script( <label for="enable-experimental-apps"><?php p($l->t('Enable experimental apps')) ?></label> <p> <small> - <?php p($l->t('Experimental apps are not checked for security ' . - 'issues, new or known to be unstable and under heavy ' . - 'development. Installing them can cause data loss or security ' . - 'breaches.')) ?> + <?php p($l->t('Experimental apps are not checked for security issues, new or known to be unstable and under heavy development. Installing them can cause data loss or security breaches.')) ?> </small> </p> </div> |