diff options
author | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-12-28 12:47:27 -0500 |
---|---|---|
committer | Michael Gapczynski <GapczynskiM@gmail.com> | 2011-12-28 12:47:27 -0500 |
commit | 9b59bf40dff94c79cef45916c7ec6cf7d9835f14 (patch) | |
tree | 02e64df3271d9dda4a53848aa405923913336ef3 /files/index.php | |
parent | 1cddfe8820b37eeca5c814ea9a48ebd3abab23ea (diff) | |
download | nextcloud-server-9b59bf40dff94c79cef45916c7ec6cf7d9835f14.tar.gz nextcloud-server-9b59bf40dff94c79cef45916c7ec6cf7d9835f14.zip |
Fix encoding again and update the link after renaming files
Diffstat (limited to 'files/index.php')
-rw-r--r-- | files/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/files/index.php b/files/index.php index 189917150ad..fc69a42bec6 100644 --- a/files/index.php +++ b/files/index.php @@ -71,7 +71,7 @@ $breadcrumb = array(); $pathtohere = ""; foreach( explode( "/", $dir ) as $i ){ if( $i != "" ){ - $pathtohere .= "/".urlencode($i); + $pathtohere .= "/".str_replace('+','%20', urlencode($i)); $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); } } |