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
1f5bc83d
Commit
1f5bc83d
authored
Apr 01, 2001
by
natrak
Browse files
Just a minor adjustment to tanslate \n to <BR> in account_user() for bio and sig.
parent
864b3de4
Changes
1
Hide whitespace changes
Inline
Side-by-side
account.php
View file @
1f5bc83d
...
...
@@ -236,8 +236,8 @@ function module($name, $module, $username) {
$output
.
=
" <TR><TD ALIGN=
\"
right
\"
><B>"
.
t
(
"Username"
)
.
":</B></TD><TD>
$user->userid
</TD></TR>
\n
"
;
$output
.
=
" <TR><TD ALIGN=
\"
right
\"
><B>"
.
t
(
"E-mail"
)
.
":</B></TD><TD>"
.
format_email
(
$user
->
fake_email
)
.
"</A></TD></TR>
\n
"
;
$output
.
=
" <TR><TD ALIGN=
\"
right
\"
><B>"
.
t
(
"Homepage"
)
.
":</B></TD><TD>"
.
format_url
(
$user
->
url
)
.
"</TD></TR>
\n
"
;
$output
.
=
" <TR><TD ALIGN=
\"
right
\"
VALIGN=
\"
top
\"
><B>"
.
t
(
"Bio"
)
.
":</B></TD><TD>"
.
check_output
(
$user
->
bio
)
.
"</TD></TR>
\n
"
;
$output
.
=
" <TR><TD ALIGN=
\"
right
\"
VALIGN=
\"
top
\"
><B>"
.
t
(
"Signature"
)
.
":</B></TD><TD>"
.
check_output
(
$user
->
signature
)
.
"</TD></TR>
\n
"
;
$output
.
=
" <TR><TD ALIGN=
\"
right
\"
VALIGN=
\"
top
\"
><B>"
.
t
(
"Bio"
)
.
":</B></TD><TD>"
.
check_output
(
$user
->
bio
,
1
)
.
"</TD></TR>
\n
"
;
$output
.
=
" <TR><TD ALIGN=
\"
right
\"
VALIGN=
\"
top
\"
><B>"
.
t
(
"Signature"
)
.
":</B></TD><TD>"
.
check_output
(
$user
->
signature
,
1
)
.
"</TD></TR>
\n
"
;
$output
.
=
"</TABLE>
\n
"
;
// Display account information:
...
...
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