diff options
author | Jerome Bakker <jeabakker@coldtrick.com> | 2012-04-26 14:17:45 +0200 |
---|---|---|
committer | Jerome Bakker <jeabakker@coldtrick.com> | 2012-04-26 14:17:45 +0200 |
commit | d948178b7999ec6c87a6013af8cda8fa70216bbb (patch) | |
tree | e812c1e4ea31d0ec18f9bc27f0a8269b552cb73e /mod | |
parent | 72f0c8462e79333667ebddd885500e5efddd1c28 (diff) | |
download | elgg-d948178b7999ec6c87a6013af8cda8fa70216bbb.tar.gz elgg-d948178b7999ec6c87a6013af8cda8fa70216bbb.tar.bz2 |
fixed: group icon fallback error
Diffstat (limited to 'mod')
-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); } |