diff options
author | Arthur Schiwon <blizzz@owncloud.com> | 2012-05-07 10:43:54 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@owncloud.com> | 2012-05-07 17:35:23 +0200 |
commit | e9c7ecf22dbc2e04e2d6122bfb515cc95de9e75f (patch) | |
tree | be0e9b79ae7bfb1335a9656b0dda3ad42f0c60c8 /apps/files | |
parent | 0ff5ab65be708b8a96f12afb70fbc349db7cfd1d (diff) | |
download | nextcloud-server-e9c7ecf22dbc2e04e2d6122bfb515cc95de9e75f.tar.gz nextcloud-server-e9c7ecf22dbc2e04e2d6122bfb515cc95de9e75f.zip |
applying coding guideline
Diffstat (limited to 'apps/files')
-rwxr-xr-x | apps/files/index.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files/index.php b/apps/files/index.php index b8bb91109b8..7ead3ce8f86 100755 --- a/apps/files/index.php +++ b/apps/files/index.php @@ -72,11 +72,11 @@ foreach( explode( '/', $dir ) as $i ){ } // make breadcrumb und filelist markup -$list = new OCP\Template( "files", "part.list", "" ); +$list = new OCP\Template( 'files', 'part.list', '' ); $list->assign( 'files', $files ); $list->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'?dir='); $list->assign( 'downloadURL', OCP\Util::linkTo('files', 'download.php').'?file='); -$breadcrumbNav = new OCP\Template( "files", "part.breadcrumb", "" ); +$breadcrumbNav = new OCP\Template( 'files', 'part.breadcrumb', '' ); $breadcrumbNav->assign( 'breadcrumb', $breadcrumb ); $breadcrumbNav->assign( 'baseURL', OCP\Util::linkTo('files', 'index.php').'?dir='); @@ -88,7 +88,7 @@ $freeSpace=OC_Filesystem::free_space('/'); $freeSpace=max($freeSpace,0); $maxUploadFilesize = min($maxUploadFilesize ,$freeSpace); -$tmpl = new OCP\Template( "files", "index", "user" ); +$tmpl = new OCP\Template( 'files', 'index', 'user' ); $tmpl->assign( 'fileList', $list->fetchPage() ); $tmpl->assign( 'breadcrumb', $breadcrumbNav->fetchPage() ); $tmpl->assign( 'dir', $dir); |