mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-22 22:08:39 +01:00
Fix link thumbnailing, accidentally used include() instead of readfile() for cached images
This commit is contained in:
parent
073e5fdc81
commit
a0201fd941
@ -12,7 +12,7 @@
|
||||
|
||||
// Check for existing thumbnail
|
||||
if(file_exists($g_dstfile) && filemtime($g_dstfile) >= filemtime($g_srcfile)) {
|
||||
include $g_dstfile;
|
||||
readfile($g_dstfile);
|
||||
return;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user