summaryrefslogtreecommitdiffstats
path: root/apps/files_versions
diff options
context:
space:
mode:
authorBart Visscher <bartv@thisnet.nl>2012-12-14 23:22:46 +0100
committerBart Visscher <bartv@thisnet.nl>2012-12-15 00:43:46 +0100
commit85bd28c5081e7c2fea236c4528c23be283aa7350 (patch)
tree8d79b78d14831057bf2db8c8be2e889460e93063 /apps/files_versions
parentf39454ed12018402f38a8f6bf99fc94d676a0a3a (diff)
downloadnextcloud-server-85bd28c5081e7c2fea236c4528c23be283aa7350.tar.gz
nextcloud-server-85bd28c5081e7c2fea236c4528c23be283aa7350.zip
Fix some of "Closing brace must be on a line by itself"
Diffstat (limited to 'apps/files_versions')
-rw-r--r--apps/files_versions/templates/history.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/files_versions/templates/history.php b/apps/files_versions/templates/history.php
index 854d032da62..cc5a494f19e 100644
--- a/apps/files_versions/templates/history.php
+++ b/apps/files_versions/templates/history.php
@@ -23,7 +23,9 @@ if( isset( $_['message'] ) ) {
echo ' ';
echo OCP\Util::formatDate( doubleval($v['version']) );
echo ' <a href="'.OCP\Util::linkTo('files_versions', 'history.php', array('path' => $_['path'], 'revert' => $v['version'])) .'" class="button">Revert</a><br /><br />';
- if ( $v['cur'] ) { echo ' (<b>Current</b>)'; }
+ if ( $v['cur'] ) {
+ echo ' (<b>Current</b>)';
+ }
echo '<br /><br />';
}