Remove extraneous forward slash in serialized url data
This commit is contained in:
parent
dc582438de
commit
88d2093698
|
@ -253,8 +253,8 @@ class Image implements JsonSerializable {
|
||||||
'id' => $this->getID(),
|
'id' => $this->getID(),
|
||||||
'album_id' => $this->getAlbumID(),
|
'album_id' => $this->getAlbumID(),
|
||||||
'albumfolder' => $this->getAlbumFolder(),
|
'albumfolder' => $this->getAlbumFolder(),
|
||||||
'imageurl' => basename(ALBUMFOLDER) . "/" . $this->getAlbumFolder() . "/" . $this->getFileName(),
|
'imageurl' => basename(ALBUMFOLDER) . "/" . $this->getAlbumFolder() . $this->getFileName(),
|
||||||
'thumburl' => basename(THUMBNAILFOLDER) . "/" . $this->getAlbumFolder() . "/" . $this->getFileName(),
|
'thumburl' => basename(THUMBNAILFOLDER) . "/" . $this->getAlbumFolder() . $this->getFileName(),
|
||||||
'title' => $this->getTitle(),
|
'title' => $this->getTitle(),
|
||||||
'description' => $this->getDescription(),
|
'description' => $this->getDescription(),
|
||||||
'createtime' => $this->getCreateTime()
|
'createtime' => $this->getCreateTime()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user