Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
e013f48d
Commit
e013f48d
authored
14 years ago
by
Anika Henke
Browse files
Options
Downloads
Patches
Plain Diff
adjusted tpl_youarehere to use tpl_pagelink (and fixed bugs with missing first headings)
parent
5526795c
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
inc/template.php
+4
-16
4 additions, 16 deletions
inc/template.php
with
4 additions
and
16 deletions
inc/template.php
+
4
−
16
View file @
e013f48d
...
...
@@ -748,39 +748,27 @@ function tpl_youarehere($sep=' » '){
echo
'<span class="bchead">'
.
$lang
[
'youarehere'
]
.
': </span>'
;
// always print the startpage
$title
=
useHeading
(
'navigation'
)
?
p_get_first_heading
(
$conf
[
'start'
])
:
$conf
[
'start'
];
if
(
!
$title
)
$title
=
$conf
[
'start'
];
tpl_link
(
wl
(
$conf
[
'start'
]),
hsc
(
$title
),
'title="'
.
$conf
[
'start'
]
.
'"'
);
tpl_pagelink
(
':'
.
$conf
[
'start'
]);
// print intermediate namespace links
$part
=
''
;
for
(
$i
=
0
;
$i
<
$count
-
1
;
$i
++
){
$part
.
=
$parts
[
$i
]
.
':'
;
$page
=
$part
;
resolve_pageid
(
''
,
$page
,
$exists
);
if
(
$page
==
$conf
[
'start'
])
continue
;
// Skip startpage
// output
echo
$sep
;
if
(
$exists
){
$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"'
);
}
tpl_pagelink
(
$page
);
}
// print current page, skipping start page, skipping for namespace index
resolve_pageid
(
''
,
$page
,
$exists
);
if
(
isset
(
$page
)
&&
$page
==
$part
.
$parts
[
$i
])
return
;
$page
=
$part
.
$parts
[
$i
];
if
(
$page
==
$conf
[
'start'
])
return
;
echo
$sep
;
if
(
page_exists
(
$page
)){
$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"'
);
}
tpl_pagelink
(
$page
);
return
true
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment