summaryrefslogtreecommitdiffstats
path: root/apps/files/ajax/list.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2012-08-29 00:50:12 +0200
committerThomas Mueller <thomas.mueller@tmit.eu>2012-08-29 00:50:12 +0200
commitfe49cbafc77f8a197dfe5c947360d9e52396d081 (patch)
tree4a2a1c027c809f0ae29d638231127a1003344959 /apps/files/ajax/list.php
parentf301bfd8c9f6b9beda907888708b0d465dc87a83 (diff)
downloadnextcloud-server-fe49cbafc77f8a197dfe5c947360d9e52396d081.tar.gz
nextcloud-server-fe49cbafc77f8a197dfe5c947360d9e52396d081.zip
apply coding style
Diffstat (limited to 'apps/files/ajax/list.php')
-rw-r--r--apps/files/ajax/list.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php
index dae0c1a828d..94ddf0364be 100644
--- a/apps/files/ajax/list.php
+++ b/apps/files/ajax/list.php
@@ -14,11 +14,11 @@ $doBreadcrumb = isset( $_GET['breadcrumb'] ) ? true : false;
$data = array();
// Make breadcrumb
-if($doBreadcrumb){
+if($doBreadcrumb) {
$breadcrumb = array();
$pathtohere = "/";
foreach( explode( "/", $dir ) as $i ){
- if( $i != "" ){
+ if( $i != "" ) {
$pathtohere .= "$i/";
$breadcrumb[] = array( "dir" => $pathtohere, "name" => $i );
}