diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2012-10-23 23:48:27 -0700 |
---|---|---|
committer | Lukas Reschke <lukas@statuscode.ch> | 2012-10-23 23:48:27 -0700 |
commit | a7eb56c799499a76fdc49c1a1dc971bb6dfea72e (patch) | |
tree | 9c9eaa76a78f86b5f1b59f432d056a1cf459c39e /apps/files_sharing | |
parent | f33af71eb017fda5ea7e95270b92f1bca8835bbc (diff) | |
parent | 36d0d7590134f5587ab09c67927c3187e8b5c790 (diff) | |
download | nextcloud-server-a7eb56c799499a76fdc49c1a1dc971bb6dfea72e.tar.gz nextcloud-server-a7eb56c799499a76fdc49c1a1dc971bb6dfea72e.zip |
Merge pull request #76 from fmms/master
checkstyle: some more cleanups
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/templates/public.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/templates/public.php b/apps/files_sharing/templates/public.php index ef81e296d82..35cca7c42dc 100644 --- a/apps/files_sharing/templates/public.php +++ b/apps/files_sharing/templates/public.php @@ -19,7 +19,7 @@ <?php if (isset($_['folder'])): ?> <?php echo $_['folder']; ?> <?php else: ?> - <?php if (substr($_['mimetype'], 0 , strpos($_['mimetype'], '/')) == 'image'): ?> + <?php if (substr($_['mimetype'], 0, strpos($_['mimetype'], '/')) == 'image'): ?> <div id="imgframe"> <img src="<?php echo $_['downloadURL']; ?>" /> </div> |