diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-08-18 15:35:11 -0400 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-08-18 15:35:31 -0400 |
commit | 498356fcb85198fd447f112268bb2bb769c05089 (patch) | |
tree | 1488ef511db12f8f87ea8d4fc07f31801f93d893 /files/index.php | |
parent | 115a6c8785c265f9b95fd9b2e7d1c6a3ac0a6f1f (diff) | |
download | nextcloud-server-498356fcb85198fd447f112268bb2bb769c05089.tar.gz nextcloud-server-498356fcb85198fd447f112268bb2bb769c05089.zip |
Copy get.php into files_sharing, public links now use files templates
Diffstat (limited to 'files/index.php')
-rw-r--r-- | files/index.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/files/index.php b/files/index.php index 821879b0346..5ab74a6267b 100644 --- a/files/index.php +++ b/files/index.php @@ -69,8 +69,10 @@ foreach( explode( "/", $dir ) as $i ){ // make breadcrumb und filelist markup $list = new OC_Template( "files", "part.list", "" ); $list->assign( "files", $files ); +$list->assign( "baseUrl", OC_Helper::linkTo("files", "index.php?")); $breadcrumbNav = new OC_Template( "files", "part.breadcrumb", "" ); $breadcrumbNav->assign( "breadcrumb", $breadcrumb ); +$breadcrumbNav->assign( "baseUrl", OC_Helper::linkTo("files", "index.php?")); $maxUploadFilesize = OC_Helper::computerFileSize(ini_get('upload_max_filesize')); |