diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-23 13:43:19 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-06-23 13:43:19 +0000 |
commit | a5e24c6fae8c8d7a6ad5ab257423d54982f301cf (patch) | |
tree | 3bc02fae277bfe626ceae1015ed31b5e3576d264 | |
parent | 65770262f6108120a951e0f89df9b8d42158b8fc (diff) | |
download | elgg-a5e24c6fae8c8d7a6ad5ab257423d54982f301cf.tar.gz elgg-a5e24c6fae8c8d7a6ad5ab257423d54982f301cf.tar.bz2 |
Added master icon size (part 2)
git-svn-id: https://code.elgg.org/elgg/trunk@1058 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | mod/profile/icon.php | 2 | ||||
-rw-r--r-- | mod/profile/views/default/profile/icon.php | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mod/profile/icon.php b/mod/profile/icon.php index 65723a164..4a9c8cbfe 100644 --- a/mod/profile/icon.php +++ b/mod/profile/icon.php @@ -20,7 +20,7 @@ // Get the size
$size = strtolower(get_input('size'));
- if (!in_array($size,array('large','medium','small','tiny')))
+ if (!in_array($size,array('large','medium','small','tiny','master')))
$size = "medium";
// Try and get the icon
diff --git a/mod/profile/views/default/profile/icon.php b/mod/profile/views/default/profile/icon.php index 9221a7be8..b98445981 100644 --- a/mod/profile/views/default/profile/icon.php +++ b/mod/profile/views/default/profile/icon.php @@ -27,7 +27,7 @@ }
// Get size
- if (!in_array($vars['size'],array('small','medium','large','tiny')))
+ if (!in_array($vars['size'],array('small','medium','large','tiny','master')))
$vars['size'] = "medium";
// Get any align and js
|