diff options
author | Andreas Gohr <andi@splitbrain.org> | 2010-01-09 13:21:16 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2010-01-09 13:21:16 +0100 |
commit | c471e6a6aee9997e62ce58c3e49dd8ecad28b92a (patch) | |
tree | 25aa52779b85401e8338345e741863de30cc0620 /inc/parser | |
parent | ca09b77d620896e202fa5eb4da4d30eed0c92ba3 (diff) | |
download | rpg-c471e6a6aee9997e62ce58c3e49dd8ecad28b92a.tar.gz rpg-c471e6a6aee9997e62ce58c3e49dd8ecad28b92a.tar.bz2 |
fixed double encoding when embedding flash through image syntax
Diffstat (limited to 'inc/parser')
-rw-r--r-- | inc/parser/xhtml.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index 4d5333f7a..4ff5f18b8 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -1019,7 +1019,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer { $att['class'] = "media$align"; if($align == 'right') $att['align'] = 'right'; if($align == 'left') $att['align'] = 'left'; - $ret .= html_flashobject(ml($src,array('cache'=>$cache)),$width,$height, + $ret .= html_flashobject(ml($src,array('cache'=>$cache),true,'&'),$width,$height, array('quality' => 'high'), null, $att, |