aboutsummaryrefslogtreecommitdiffstats
path: root/files/index.php
diff options
context:
space:
mode:
authorMichael Gapczynski <GapczynskiM@gmail.com>2011-12-28 12:47:27 -0500
committerMichael Gapczynski <GapczynskiM@gmail.com>2011-12-28 12:47:27 -0500
commit9b59bf40dff94c79cef45916c7ec6cf7d9835f14 (patch)
tree02e64df3271d9dda4a53848aa405923913336ef3 /files/index.php
parent1cddfe8820b37eeca5c814ea9a48ebd3abab23ea (diff)
downloadnextcloud-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.php2
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 );
}
}