Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
project
drupal
Commits
a7e205d2
Commit
a7e205d2
authored
Dec 01, 2003
by
Steven Wittens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
- Fixed incorrect filter usage
parent
4e2c0b25
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/profile.module
modules/profile.module
+1
-1
modules/profile/profile.module
modules/profile/profile.module
+1
-1
No files found.
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