Skip to content
Snippets Groups Projects
Commit af03da1a authored by Andreas Gohr's avatar Andreas Gohr
Browse files

fix display of pages in youarehere navigation FS#1611

Ignore-this: 27fbdff6135deed64843aadfe83f5f7

darcs-hash:20090312230306-7ad00-c6f4f410e5caa8ffe8d1ea469fa561a00078e0ad.gz
parent b42bcfe7
No related branches found
No related tags found
No related merge requests found
......@@ -875,8 +875,7 @@ function tpl_youarehere($sep=' » '){
// output
echo $sep;
if($exists){
$title = useHeading('navigation') ? p_get_first_heading($page) : $page;
if(!$title) $title = $parts[$i];
$title = useHeading('navigation') ? p_get_first_heading($page) : $parts[$i];
tpl_link(wl($page),hsc($title),'title="'.$page.'"');
}else{
tpl_link(wl($page),$parts[$i],'title="'.$page.'" class="wikilink2" rel="nofollow"');
......@@ -889,8 +888,7 @@ function tpl_youarehere($sep=' » '){
if($page == $conf['start']) return;
echo $sep;
if(page_exists($page)){
$title = useHeading('navigation') ? p_get_first_heading($page) : $page;
if(!$title) $title = $parts[$i];
$title = useHeading('navigation') ? p_get_first_heading($page) : $parts[$i];
tpl_link(wl($page),hsc($title),'title="'.$page.'"');
}else{
tpl_link(wl($page),$parts[$i],'title="'.$page.'" class="wikilink2" rel="nofollow"');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment