Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
project
drupal
Commits
a6f0fd4d
Commit
a6f0fd4d
authored
Feb 19, 2002
by
Kjartan
Browse files
- removed some warnings caused by implode.
parent
c9fc36fc
Changes
1
Hide whitespace changes
Inline
Side-by-side
includes/theme.inc
View file @
a6f0fd4d
...
...
@@ -8,13 +8,13 @@ function header($title = "") {
$output
.
=
"<table border=
\"
0
\"
cellspacing=
\"
4
\"
cellpadding=
\"
4
\"
><tr><td valign=
\"
top
\"
width=
\"
170
\"
>"
;
print
$output
;
$this
->
box
(
t
(
"Navigation"
),
implode
(
"<br />"
,
link_page
()));
theme_blocks
(
"all"
,
$this
);
$this
->
box
(
t
(
"Navigation"
),
@
implode
(
"<br />"
,
link_page
()));
theme_blocks
(
"all"
,
$this
);
print
"</td><td valign=
\"
top
\"
>"
;
}
function
links
(
$links
,
$delimiter
=
" | "
)
{
return
implode
(
$delimiter
,
$links
);
return
@
implode
(
$delimiter
,
$links
);
}
function
image
(
$name
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment