From fc18c0fbae82b1bd3d6b74b486798753afea2c73 Mon Sep 17 00:00:00 2001 From: chris Date: Fri, 26 Jan 2007 21:41:45 +0100 Subject: fix FS#1010 darcs-hash:20070126204145-9b6ab-db7eba9c6045584a381eb83ae48787627973532b.gz --- inc/parser/metadata.php | 2 +- inc/parser/xhtml.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'inc/parser') diff --git a/inc/parser/metadata.php b/inc/parser/metadata.php index d818ac337..1bb14b674 100644 --- a/inc/parser/metadata.php +++ b/inc/parser/metadata.php @@ -401,7 +401,7 @@ class Doku_Renderer_metadata extends Doku_Renderer { $isImage = false; if (is_null($title)){ if ($conf['useheading'] && $id){ - $heading = p_get_first_heading($id); + $heading = p_get_first_heading($id,false); if ($heading) return $heading; } return $default; diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php index 5e3a12849..7cccb14ec 100644 --- a/inc/parser/xhtml.php +++ b/inc/parser/xhtml.php @@ -995,7 +995,7 @@ class Doku_Renderer_xhtml extends Doku_Renderer { $isImage = false; if ( is_null($title) ) { if ($conf['useheading'] && $id) { - $heading = p_get_first_heading($id); + $heading = p_get_first_heading($id,true); if ($heading) { return $this->_xmlEntities($heading); } -- cgit v1.2.3