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
a7e205d2
Commit
a7e205d2
authored
Dec 01, 2003
by
Steven Wittens
Browse files
- Fixed incorrect filter usage
parent
4e2c0b25
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/profile.module
View file @
a7e205d2
...
...
@@ -190,7 +190,7 @@ function _profile_user_view(&$user, $mode) {
case
"textfield"
:
case
"textarea"
:
case
"checkbox"
:
$value
=
(
$t
==
"profile_homepage"
)
?
"<a href=
\"
"
.
check_output
(
$user
->
$t
)
.
"
\"
>"
.
check_output
(
$user
->
$t
)
.
"</a>"
:
check_output
(
$user
->
$t
);
$value
=
(
$t
==
"profile_homepage"
)
?
"<a href=
\"
"
.
drupal_specialchars
(
$user
->
$t
)
.
"
\"
>"
.
check_output
(
$user
->
$t
)
.
"</a>"
:
check_output
(
$user
->
$t
);
$output
.
=
form_item
(
$field
[
1
],
$value
);
break
;
case
"select"
:
...
...
modules/profile/profile.module
View file @
a7e205d2
...
...
@@ -190,7 +190,7 @@ function _profile_user_view(&$user, $mode) {
case
"textfield"
:
case
"textarea"
:
case
"checkbox"
:
$value
=
(
$t
==
"profile_homepage"
)
?
"<a href=
\"
"
.
check_output
(
$user
->
$t
)
.
"
\"
>"
.
check_output
(
$user
->
$t
)
.
"</a>"
:
check_output
(
$user
->
$t
);
$value
=
(
$t
==
"profile_homepage"
)
?
"<a href=
\"
"
.
drupal_specialchars
(
$user
->
$t
)
.
"
\"
>"
.
check_output
(
$user
->
$t
)
.
"</a>"
:
check_output
(
$user
->
$t
);
$output
.
=
form_item
(
$field
[
1
],
$value
);
break
;
case
"select"
:
...
...
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