diff options
author | Anika Henke <anika@selfthinker.org> | 2012-07-05 22:58:24 +0100 |
---|---|---|
committer | Anika Henke <anika@selfthinker.org> | 2012-07-05 22:58:24 +0100 |
commit | e260f93b6cea05bc39bbd77b9db5bdc0c2c424bf (patch) | |
tree | 1ffe80265d810942d100fe0d33d3ab542a6c735c /lib/tpl | |
parent | 0644090a80cabe51bcee580999ed33913aa24699 (diff) | |
download | rpg-e260f93b6cea05bc39bbd77b9db5bdc0c2c424bf.tar.gz rpg-e260f93b6cea05bc39bbd77b9db5bdc0c2c424bf.tar.bz2 |
xml compatibility fixes (mainly entities to unicode conversions)
Diffstat (limited to 'lib/tpl')
-rw-r--r-- | lib/tpl/default/main.php | 4 | ||||
-rw-r--r-- | lib/tpl/index.php | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/tpl/default/main.php b/lib/tpl/default/main.php index 3e85c58f2..9a14f29a2 100644 --- a/lib/tpl/default/main.php +++ b/lib/tpl/default/main.php @@ -61,7 +61,7 @@ if (!defined('DOKU_INC')) die(); <div class="bar-right" id="bar__topright"> <?php tpl_button('recent')?> - <?php tpl_searchform()?> + <?php tpl_searchform()?>  </div> <div class="clearer"></div> @@ -121,7 +121,7 @@ if (!defined('DOKU_INC')) die(); <?php tpl_button('profile')?> <?php tpl_button('login')?> <?php tpl_button('index')?> - <?php tpl_button('top')?> + <?php tpl_button('top')?>  </div> <div class="clearer"></div> </div> diff --git a/lib/tpl/index.php b/lib/tpl/index.php index 0273e5678..4570f70f5 100644 --- a/lib/tpl/index.php +++ b/lib/tpl/index.php @@ -54,7 +54,7 @@ if ($ini) { echo '<td>'.htmlspecialchars($val).'</td>'; echo '<td>'; if(preg_match('/^#[0-f]{3,6}$/i',$val)){ - echo '<div class="color" style="background-color:'.$val.';"> </div>'; + echo '<div class="color" style="background-color:'.$val.';"> </div>'; } echo '</td>'; echo '</tr>'; |