diff options
author | Andreas Gohr <andi@splitbrain.org> | 2008-12-26 17:12:44 +0100 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2008-12-26 17:12:44 +0100 |
commit | 443d207b937495af46f088d883836ad9094bccdd (patch) | |
tree | 6bc3a0a0cb411fcc269337f05d6fdbcefbe90736 /inc/parser | |
parent | 6df2a685ec14723d4413b8df7a95de5f183a873f (diff) | |
download | rpg-443d207b937495af46f088d883836ad9094bccdd.tar.gz rpg-443d207b937495af46f088d883836ad9094bccdd.tar.bz2 |
fixed PHP4 incompatibility in sectionID() FS#1553
darcs-hash:20081226161244-7ad00-8c843ea6a06a0d36fc322d109497239ab6ea229c.gz
Diffstat (limited to 'inc/parser')
-rw-r--r-- | inc/parser/xhtml.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index 4749c470d..7ea238f6f 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -1006,7 +1006,8 @@ class Doku_Renderer_xhtml extends Doku_Renderer { if($create){ return sectionID($title,$this->headers); }else{ - return sectionID($title); + $check = false; + return sectionID($title,$check); } } |