diff options
author | Georg Ehrke <dev@georgswebsite.de> | 2012-08-04 17:38:31 +0200 |
---|---|---|
committer | Georg Ehrke <dev@georgswebsite.de> | 2012-08-04 17:38:31 +0200 |
commit | 1bccc80996e270f928c207cdd3090f4284abaea5 (patch) | |
tree | a21569c238cd6928951a86375f03cafbc8a81e88 /settings/templates/admin.php | |
parent | d7e77f64263cb846ce37a02761b8c3e35c048a00 (diff) | |
download | nextcloud-server-1bccc80996e270f928c207cdd3090f4284abaea5.tar.gz nextcloud-server-1bccc80996e270f928c207cdd3090f4284abaea5.zip |
hide morelog button if there are no more log entries - bugfix for oc-1398
Diffstat (limited to 'settings/templates/admin.php')
-rwxr-xr-x | settings/templates/admin.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/settings/templates/admin.php b/settings/templates/admin.php index 033cd1a1642..60b9732d7f4 100755 --- a/settings/templates/admin.php +++ b/settings/templates/admin.php @@ -52,7 +52,10 @@ if(!$_['htaccessworking']) { </tr> <?php endforeach;?> </table> +<?php if($_['entriesremain']): ?> <input id='moreLog' type='button' value='<?php echo $l->t('More');?>...'></input> +<?php endif; ?> + </fieldset> |