diff options
author | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-23 10:59:37 +0000 |
---|---|---|
committer | ben <ben@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-05-23 10:59:37 +0000 |
commit | 001b35c518124a97679101e35f5f1df5c1be08b0 (patch) | |
tree | 08fad2a0ff557fc91ccc75119b5289330002e168 /mod/profile/icon.php | |
parent | f5c0093da9c466df97e0049b4dc4251e12f04faf (diff) | |
download | elgg-001b35c518124a97679101e35f5f1df5c1be08b0.tar.gz elgg-001b35c518124a97679101e35f5f1df5c1be08b0.tar.bz2 |
Introducing the 'tiny' profile icon size
git-svn-id: https://code.elgg.org/elgg/trunk@692 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 c201d7716..efabe1d6d 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')))
+ if (!in_array($size,array('large','medium','small','tiny')))
$size = "medium";
// Try and get the icon
|