diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-20 11:28:04 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-20 11:28:04 +0000 |
commit | 40b26cd3c3e58aeafd629236544c754804135ebb (patch) | |
tree | 7f9983c57805e55234060617340d962e09cdd837 /mod/profile/views | |
parent | b9dcdcb39433b3b83cfde607efda946a131f3b92 (diff) | |
download | elgg-40b26cd3c3e58aeafd629236544c754804135ebb.tar.gz elgg-40b26cd3c3e58aeafd629236544c754804135ebb.tar.bz2 |
Let's use a slightly smaller image on the main profile page ..
git-svn-id: https://code.elgg.org/elgg/trunk@1015 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views')
-rw-r--r-- | mod/profile/views/default/profile/userdetails.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/profile/views/default/profile/userdetails.php b/mod/profile/views/default/profile/userdetails.php index c3c6e9de5..1481f32c5 100644 --- a/mod/profile/views/default/profile/userdetails.php +++ b/mod/profile/views/default/profile/userdetails.php @@ -13,9 +13,9 @@ */
if ($vars['full'] == true) {
- $iconsize = "large";
- } else {
$iconsize = "medium";
+ } else {
+ $iconsize = "small";
}
echo elgg_view(
"profile/icon", array(
|