Loading Entities/Image.php +1 −1 Original line number Original line Diff line number Diff line Loading @@ -347,7 +347,7 @@ class Image extends File 'src' => \elgg_get_site_url() . 'fs/v1/thumbnail/' . $this->guid, 'src' => \elgg_get_site_url() . 'fs/v1/thumbnail/' . $this->guid, 'href' => \elgg_get_site_url() . 'media/' . ($this->container_guid ? $this->container_guid . '/' : '') . $this->guid, 'href' => \elgg_get_site_url() . 'media/' . ($this->container_guid ? $this->container_guid . '/' : '') . $this->guid, 'mature' => $this->getFlag('mature'), 'mature' => $this->getFlag('mature'), 'nsfw' => $this->getFlag('nsfw'), 'nsfw' => $this->nsfw ?: [], 'width' => $this->width ?? 0, 'width' => $this->width ?? 0, 'height' => $this->height ?? 0, 'height' => $this->height ?? 0, 'gif' => (bool) ($this->gif ?? false), 'gif' => (bool) ($this->gif ?? false), Loading Controllers/api/v1/newsfeed.php +3 −3 File changed.Contains only whitespace changes. Show changes Loading
Entities/Image.php +1 −1 Original line number Original line Diff line number Diff line Loading @@ -347,7 +347,7 @@ class Image extends File 'src' => \elgg_get_site_url() . 'fs/v1/thumbnail/' . $this->guid, 'src' => \elgg_get_site_url() . 'fs/v1/thumbnail/' . $this->guid, 'href' => \elgg_get_site_url() . 'media/' . ($this->container_guid ? $this->container_guid . '/' : '') . $this->guid, 'href' => \elgg_get_site_url() . 'media/' . ($this->container_guid ? $this->container_guid . '/' : '') . $this->guid, 'mature' => $this->getFlag('mature'), 'mature' => $this->getFlag('mature'), 'nsfw' => $this->getFlag('nsfw'), 'nsfw' => $this->nsfw ?: [], 'width' => $this->width ?? 0, 'width' => $this->width ?? 0, 'height' => $this->height ?? 0, 'height' => $this->height ?? 0, 'gif' => (bool) ($this->gif ?? false), 'gif' => (bool) ($this->gif ?? false), Loading