also convert special chars to entities in the breadcrumb

This commit is contained in:
Arthur Schiwon 2011-04-18 10:10:17 +02:00
parent 944a05b588
commit d377a1518d
1 changed files with 1 additions and 1 deletions

View File

@ -1,4 +1,4 @@
<a href="<?php echo link_to("files", "index.php?dir=/"); ?>"><img src="<?php echo image_path("", "actions/go-home.png"); ?>" alt="Root" /></a>
<?php foreach($_["breadcrumb"] as $crumb): ?>
<a href="<?php echo link_to("files", "index.php?dir=".$crumb["dir"]); ?>"><?php echo $crumb["name"]; ?></a>
<a href="<?php echo link_to("files", "index.php?dir=".$crumb["dir"]); ?>"><?php echo htmlspecialchars($crumb["name"]); ?></a>
<?php endforeach; ?>