summaryrefslogtreecommitdiff
path: root/inc/parser/xhtml.php
diff options
context:
space:
mode:
authorandi <andi@splitbrain.org>2005-05-01 13:53:05 +0200
committerandi <andi@splitbrain.org>2005-05-01 13:53:05 +0200
commit265e3787e12edf6f10be9d7260d20ea1778428cb (patch)
treec95fede015cc07d40125cb0d79b49d69a2b25c54 /inc/parser/xhtml.php
parentcbe3402474d1a9f6a563d717ff38d0120425c184 (diff)
downloadrpg-265e3787e12edf6f10be9d7260d20ea1778428cb.tar.gz
rpg-265e3787e12edf6f10be9d7260d20ea1778428cb.tar.bz2
various language fixes (including RTL updates)
darcs-hash:20050501115305-9977f-e7ccfbf5b3f47c7f7ff5fb339ba40c0c50861a3c.gz
Diffstat (limited to 'inc/parser/xhtml.php')
-rw-r--r--inc/parser/xhtml.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index 9df02c942..41a07e0a9 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -537,9 +537,9 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
if(!$isImage){
//if ico exists set additional style
if(@file_exists(DOKU_INC.'interwiki/'.$wikiName.'.png')){
- $link['style']='background: transparent url('.DOKU_BASE.'interwiki/'.$wikiName.'.png) 0px 1px no-repeat;';
+ $link['style']='background-image: url('.DOKU_BASE.'interwiki/'.$wikiName.'.png)';
}elseif(@file_exists(DOKU_INC.'interwiki/'.$wikiName.'.gif')){
- $link['style']='background: transparent url('.DOKU_BASE.'interwiki/'.$wikiName.'.gif) 0px 1px no-repeat;';
+ $link['style']='background-image: url('.DOKU_BASE.'interwiki/'.$wikiName.'.gif)';
}
}