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
8b8a585a
Commit
8b8a585a
authored
Jan 30, 2006
by
Dries
Browse files
- Patch
#44724
: fixed problem with profile.module.
parent
48b367c9
Changes
2
Hide whitespace changes
Inline
Side-by-side
modules/profile.module
View file @
8b8a585a
...
...
@@ -218,8 +218,8 @@ function profile_browse() {
$output
=
'<div id="profile">'
;
while
(
$account
=
db_fetch_object
(
$result
))
{
$account
=
user_load
(
array
(
'uid'
=>
$account
->
uid
));
$
fields
=
_profile_update_user_fields
(
$fields
,
$account
);
$output
.
=
theme
(
'profile_listing'
,
$account
,
$
fields
);
$
profile
=
_profile_update_user_fields
(
$fields
,
$account
);
$output
.
=
theme
(
'profile_listing'
,
$account
,
$
profile
);
}
$output
.
=
'</div>'
;
$output
.
=
theme
(
'pager'
,
NULL
,
20
);
...
...
modules/profile/profile.module
View file @
8b8a585a
...
...
@@ -218,8 +218,8 @@ function profile_browse() {
$output
=
'<div id="profile">'
;
while
(
$account
=
db_fetch_object
(
$result
))
{
$account
=
user_load
(
array
(
'uid'
=>
$account
->
uid
));
$
fields
=
_profile_update_user_fields
(
$fields
,
$account
);
$output
.
=
theme
(
'profile_listing'
,
$account
,
$
fields
);
$
profile
=
_profile_update_user_fields
(
$fields
,
$account
);
$output
.
=
theme
(
'profile_listing'
,
$account
,
$
profile
);
}
$output
.
=
'</div>'
;
$output
.
=
theme
(
'pager'
,
NULL
,
20
);
...
...
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