diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 20:42:44 +0100 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2013-01-31 20:42:44 +0100 |
commit | 6d560be564edf0367b0c04190fcf5e8d228e7b4c (patch) | |
tree | ca35b4406e59758173cac60ddd23ed60d012148f /core/templates | |
parent | 3f3ae4a9856c1cb598acb1aefa6957285a479b20 (diff) | |
download | nextcloud-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.php | 2 |
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> |