fix svg fallback replacement for settings icons

This commit is contained in:
Jan-Christoph Borchardt 2013-01-31 20:42:44 +01:00
parent 3f3ae4a985
commit 6d560be564
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@
<?php foreach($_['settingsnavigation'] as $entry):?>
<li>
<a href="<?php echo $entry['href']; ?>" title="" <?php if( $entry["active"] ): ?> class="active"<?php endif; ?>>
<img src="<?php echo $entry['icon']; ?>">
<img class="svg" src="<?php echo $entry['icon']; ?>">
<?php echo $entry['name'] ?>
</a>
</li>