diff options
author | Tom N Harris <tnharris@whoopdedo.org> | 2007-10-16 00:56:06 +0200 |
---|---|---|
committer | Tom N Harris <tnharris@whoopdedo.org> | 2007-10-16 00:56:06 +0200 |
commit | 173dccb7397b0d9e6547f607319f77a9657f0aed (patch) | |
tree | 14de9dc639c7eb6a2b8d48171bc9a14bf3be51ca /inc/parser | |
parent | 4570e95445222c24c0c10019da508868ca2c2418 (diff) | |
download | rpg-173dccb7397b0d9e6547f607319f77a9657f0aed.tar.gz rpg-173dccb7397b0d9e6547f607319f77a9657f0aed.tar.bz2 |
Allow HTML from inline RSS (typo fix)
darcs-hash:20071015225606-6942e-4945a9510445707655951b740f6302dfb97c655a.gz
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 7b3e0cf9b..1b13b9b84 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -773,7 +773,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer { } if($params['details']){ $this->doc .= '<div class="detail">'; - if($htmlok){ + if($conf['htmlok']){ $this->doc .= $item->get_description(); }else{ $this->doc .= strip_tags($item->get_description()); |