From: Michael Gapczynski Date: Sun, 10 Jul 2011 20:00:08 +0000 (-0400) Subject: Directory links in navigation shouldn't have a trailing '/' X-Git-Tag: v3.0~267^2~416 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=1b8e59a0effc5d11347f6c248de8b17bbe7f8321;p=nextcloud-server.git Directory links in navigation shouldn't have a trailing '/' --- diff --git a/.gitignore b/.gitignore index 6a1ffc21cae..94de5aec803 100644 --- a/.gitignore +++ b/.gitignore @@ -24,3 +24,4 @@ RCS/* # Lokalize *lokalize* +.project diff --git a/files/index.php b/files/index.php index e88f0ef23e5..550f23541a0 100644 --- a/files/index.php +++ b/files/index.php @@ -59,10 +59,10 @@ foreach( OC_FILES::getdirectorycontent( $dir ) as $i ){ // Make breadcrumb $breadcrumb = array(); -$pathtohere = "/"; +$pathtohere = ""; foreach( explode( "/", $dir ) as $i ){ if( $i != "" ){ - $pathtohere .= "$i/"; + $pathtohere .= "/$i"; $breadcrumb[] = array( "dir" => $pathtohere, "name" => $i ); } }