Compare commits
3 commits
19e3e49fdc
...
08b45a32a5
Author | SHA1 | Date | |
---|---|---|---|
|
08b45a32a5 | ||
|
1723aa0697 | ||
|
cd9fc0ddec |
1 changed files with 2 additions and 2 deletions
|
@ -1012,7 +1012,7 @@ class Media
|
||||||
*/
|
*/
|
||||||
public static function getPreviewUrlForId(int $id, string $size = ''): string
|
public static function getPreviewUrlForId(int $id, string $size = ''): string
|
||||||
{
|
{
|
||||||
return '/photo/preview/' .
|
return DI::baseUrl() . '/photo/preview/' .
|
||||||
(Proxy::getPixelsFromSize($size) ? Proxy::getPixelsFromSize($size) . '/' : '') .
|
(Proxy::getPixelsFromSize($size) ? Proxy::getPixelsFromSize($size) . '/' : '') .
|
||||||
$id;
|
$id;
|
||||||
}
|
}
|
||||||
|
@ -1026,7 +1026,7 @@ class Media
|
||||||
*/
|
*/
|
||||||
public static function getUrlForId(int $id, string $size = ''): string
|
public static function getUrlForId(int $id, string $size = ''): string
|
||||||
{
|
{
|
||||||
return '/photo/media/' .
|
return DI::baseUrl() . '/photo/media/' .
|
||||||
(Proxy::getPixelsFromSize($size) ? Proxy::getPixelsFromSize($size) . '/' : '') .
|
(Proxy::getPixelsFromSize($size) ? Proxy::getPixelsFromSize($size) . '/' : '') .
|
||||||
$id;
|
$id;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue