summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-01-31 20:42:44 +0100
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-01-31 20:42:44 +0100
commit6d560be564edf0367b0c04190fcf5e8d228e7b4c (patch)
treeca35b4406e59758173cac60ddd23ed60d012148f /core/templates
parent3f3ae4a9856c1cb598acb1aefa6957285a479b20 (diff)
downloadnextcloud-server-6d560be564edf0367b0c04190fcf5e8d228e7b4c.tar.gz
nextcloud-server-6d560be564edf0367b0c04190fcf5e8d228e7b4c.zip
fix svg fallback replacement for settings icons
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/layout.user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index 8cdbb48d36b..9354476da0b 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -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>