summaryrefslogtreecommitdiffstats
path: root/core/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-15 03:32:31 -0800
committerJan-Christoph Borchardt <hey@jancborchardt.net>2013-02-15 03:32:31 -0800
commitac32ae79af586d6117969c385da6753cdbd9ce1a (patch)
tree626337ffd3cfac16f5e8250f3effad3174c52413 /core/templates
parent08b68aac6c89c75d8735a9bd5df9da296e06e7d1 (diff)
parentbb52271d220c2cc94e6823f39dfcbd5d842daba0 (diff)
downloadnextcloud-server-ac32ae79af586d6117969c385da6753cdbd9ce1a.tar.gz
nextcloud-server-ac32ae79af586d6117969c385da6753cdbd9ce1a.zip
Merge pull request #1683 from owncloud/ie-fixes
IE fixes
Diffstat (limited to 'core/templates')
-rw-r--r--core/templates/installation.php2
-rw-r--r--core/templates/layout.user.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/core/templates/installation.php b/core/templates/installation.php
index cef979c2ab6..b3b7cfc4b8b 100644
--- a/core/templates/installation.php
+++ b/core/templates/installation.php
@@ -49,7 +49,7 @@
</fieldset>
<fieldset id="datadirField">
- <legend><a id="showAdvanced"><?php echo $l->t( 'Advanced' ); ?> ▾</a></legend>
+ <legend><a id="showAdvanced"><?php echo $l->t( 'Advanced' ); ?> <img class="svg" src="<?php echo image_path('', 'actions/triangle-s.svg'); ?>" /></a></legend>
<div id="datadirContent">
<label for="directory"><?php echo $l->t( 'Data folder' ); ?></label>
<input type="text" name="directory" id="directory" value="<?php print OC_Helper::init_var('directory', $_['directory']); ?>" />
diff --git a/core/templates/layout.user.php b/core/templates/layout.user.php
index 38aa31be32b..0d2a9f5d34a 100644
--- a/core/templates/layout.user.php
+++ b/core/templates/layout.user.php
@@ -61,7 +61,7 @@
<?php foreach($_['navigation'] as $entry): ?>
<li data-id="<?php echo $entry['id']; ?>">
<a href="<?php echo $entry['href']; ?>" title="" <?php if( $entry['active'] ): ?> class="active"<?php endif; ?>>
- <img class="icon" src="<?php echo $entry['icon']; ?>"/>
+ <img class="icon svg" src="<?php echo $entry['icon']; ?>"/>
<?php echo $entry['name']; ?>
</a>
</li>