1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-16 19:44:09 +02:00

Issue #5120 Return to multi-dimensional format for multisite plugin compatibility.

This commit is contained in:
camer0n
2024-04-08 16:02:44 -07:00
parent 145d1dea80
commit 8711f503a1
6 changed files with 78 additions and 34 deletions

View File

@@ -608,9 +608,9 @@ class e_thumbnail
return null;
}
$getsize = isset($parm['size']) ? $parm['size'] : '100x100';
$getsize = $parm['size'] ?? '100x100';
header('location: https://via.placeholder.com/'.$getsize);
header('location: https://placehold.co/'.$getsize);
header('Content-Length: 0');
exit();
}