diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-01 13:35:05 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-07-01 13:35:05 +0000 |
commit | 38d4980b3a834ef2eb7a3dac66cf9a57ca46b568 (patch) | |
tree | 410fb2fac50aa5e6e3672fac4af9ee07c57109e4 /mod/profile/icon.php | |
parent | 9e047bce2e2f5523c164aa2e09a12dfb3a206091 (diff) | |
download | elgg-38d4980b3a834ef2eb7a3dac66cf9a57ca46b568.tar.gz elgg-38d4980b3a834ef2eb7a3dac66cf9a57ca46b568.tar.bz2 |
Added toolbar size for the icons
git-svn-id: https://code.elgg.org/elgg/trunk@1232 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/icon.php')
-rw-r--r-- | mod/profile/icon.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/profile/icon.php b/mod/profile/icon.php index 4a9c8cbfe..fc4f377ce 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','master')))
+ if (!in_array($size,array('large','medium','small','tiny','master','toolbar')))
$size = "medium";
// Try and get the icon
|