diff options
author | Evan Winslow <evan@elgg.org> | 2012-05-16 23:29:35 -0700 |
---|---|---|
committer | Evan Winslow <evan@elgg.org> | 2012-05-16 23:29:35 -0700 |
commit | 1b039f3ac1e3b975413968f21bd5bbf45b055a0d (patch) | |
tree | 87aead27a225312ac1ef718a66d162fff49110fd | |
parent | c0ebdf98e960cc3173cb6d0d18280e11c74cfd10 (diff) | |
parent | d948178b7999ec6c87a6013af8cda8fa70216bbb (diff) | |
download | elgg-1b039f3ac1e3b975413968f21bd5bbf45b055a0d.tar.gz elgg-1b039f3ac1e3b975413968f21bd5bbf45b055a0d.tar.bz2 |
Merge pull request #199 from jeabakker/group_icon
Fixes #4528: Group default icons now point to the correct image files.
-rw-r--r-- | mod/groups/icon.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/groups/icon.php b/mod/groups/icon.php index 104da4b41..f86f84fa5 100644 --- a/mod/groups/icon.php +++ b/mod/groups/icon.php @@ -35,7 +35,7 @@ if ($filehandler->open("read")) { } if (!$success) { - $location = elgg_get_plugins_path() . "groups/graphics/default{$size}.jpg"; + $location = elgg_get_plugins_path() . "groups/graphics/default{$size}.gif"; $contents = @file_get_contents($location); } |