diff options
author | Sem <sembrestels@riseup.net> | 2012-02-25 01:38:29 +0100 |
---|---|---|
committer | Sem <sembrestels@riseup.net> | 2012-02-25 01:38:29 +0100 |
commit | 8ccd45aa77d290906fd42dcf5520a434303d4f68 (patch) | |
tree | f1cb3ccc39ce4e8a4ebafb68e414c0c963790dc6 /start.php | |
parent | 3a948fa46583e2419388d0c04e910f5d69721d3e (diff) | |
download | elgg-8ccd45aa77d290906fd42dcf5520a434303d4f68.tar.gz elgg-8ccd45aa77d290906fd42dcf5520a434303d4f68.tar.bz2 |
Saving thumbnails in server and serving them secure.
Diffstat (limited to 'start.php')
-rw-r--r-- | start.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -255,7 +255,7 @@ function videolist_icon_url_override($hook, $type, $returnvalue, $params) { // tiny thumbnails are too small to be useful, so give a generic video icon if ($size != 'tiny' && isset($videolist_item->thumbnail)) { - return $videolist_item->thumbnail; + return elgg_get_site_url() . "mod/videolist/thumbnail.php?guid=" . $videolist_item->guid; } if (in_array($size, array('tiny', 'small', 'medium'))){ |