diff options
author | Bart Visscher <bartv@thisnet.nl> | 2012-11-16 12:58:24 +0100 |
---|---|---|
committer | Bart Visscher <bartv@thisnet.nl> | 2012-11-16 16:12:28 +0100 |
commit | 20c24f234f832b326d935b59d1f6c1fa5f854313 (patch) | |
tree | f27bf2d69941e664fa68724824d96995a36e3d77 /apps/files/ajax/list.php | |
parent | d1c0f2a7393d82629bec961e056856846bd05465 (diff) | |
download | nextcloud-server-20c24f234f832b326d935b59d1f6c1fa5f854313.tar.gz nextcloud-server-20c24f234f832b326d935b59d1f6c1fa5f854313.zip |
Do the url encoding once, only in breadcrumbs template
fixes issue #438
Diffstat (limited to 'apps/files/ajax/list.php')
-rw-r--r-- | apps/files/ajax/list.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/ajax/list.php b/apps/files/ajax/list.php index 568fe754c02..cade7e872b3 100644 --- a/apps/files/ajax/list.php +++ b/apps/files/ajax/list.php @@ -25,7 +25,7 @@ if($doBreadcrumb) { } $breadcrumbNav = new OCP\Template( "files", "part.breadcrumb", "" ); - $breadcrumbNav->assign( "breadcrumb", $breadcrumb ); + $breadcrumbNav->assign( "breadcrumb", $breadcrumb, false ); $data['breadcrumb'] = $breadcrumbNav->fetchPage(); } |