diff --git a/index.php b/index.php index 8b7f4e1..906b43e 100644 --- a/index.php +++ b/index.php @@ -420,12 +420,12 @@ $(function(){ function renderBreadcrumbs(path) { var base = "", $html = $('
').append( $('Home
') ); - $.each(path.split('/'),function(k,v){ + $.each(path.split('%2F'),function(k,v){ if(v) { var v_as_text = decodeURIComponent(v); $html.append( $('').text(' ▸ ') ) .append( $('').attr('href','#'+base+v).text(v_as_text) ); - base += v + '/'; + base += v + '%2F'; } }); return $html;