1
0
mirror of https://github.com/monstra-cms/monstra.git synced 2025-07-31 18:30:20 +02:00

Files Manager Improvements - Breadcrumbs fixes #94

This commit is contained in:
Awilum
2014-01-11 00:52:52 +02:00
parent 7f71f3e3bc
commit f340fcd3a2

View File

@@ -53,7 +53,7 @@
foreach ($path_parts as $p) {
$s .= $p.'/';
if($p == $current[count($current)-2]) $active = ' class="active"'; else $active = '';
echo '<li'.$active.'><a href="index.php?id=filesmanager&path='.$s.'">'.$p.'</a> <span class="divider">/</span></li>';
echo '<li'.$active.'><a href="index.php?id=filesmanager&path='.$s.'">'.$p.'</a></li>';
}
?>
</ol>