diff options
author | zotlabs <mike@macgirvin.com> | 2019-06-27 17:36:29 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-06-27 17:36:29 -0700 |
commit | 60c003733e7fed70f28eadaf3d9abcf16ec3a8ab (patch) | |
tree | abb2890a9241c01f01bcc35c7ec38633495d9860 /include | |
parent | 9def9a5cb7ab7799911013580c714605e9698122 (diff) | |
download | volse-hubzilla-60c003733e7fed70f28eadaf3d9abcf16ec3a8ab.tar.gz volse-hubzilla-60c003733e7fed70f28eadaf3d9abcf16ec3a8ab.tar.bz2 volse-hubzilla-60c003733e7fed70f28eadaf3d9abcf16ec3a8ab.zip |
photo objects: incorrect media type on links
Diffstat (limited to 'include')
-rw-r--r-- | include/photos.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/photos.php b/include/photos.php index 7fd712f3e..ee662f707 100644 --- a/include/photos.php +++ b/include/photos.php @@ -261,7 +261,7 @@ function photo_upload($channel, $observer, $args) { $r0 = $ph->save($p); $link[0] = array( 'rel' => 'alternate', - 'type' => 'text/html', + 'type' => $type, 'href' => z_root() . '/photo/' . $photo_hash . '-0.' . $ph->getExt(), 'width' => $width, 'height' => $height @@ -280,7 +280,7 @@ function photo_upload($channel, $observer, $args) { $r1 = $ph->storeThumbnail($p, PHOTO_RES_1024); $link[1] = array( 'rel' => 'alternate', - 'type' => 'text/html', + 'type' => $type, 'href' => z_root() . '/photo/' . $photo_hash . '-1.' . $ph->getExt(), 'width' => $ph->getWidth(), 'height' => $ph->getHeight() @@ -294,7 +294,7 @@ function photo_upload($channel, $observer, $args) { $r2 = $ph->storeThumbnail($p, PHOTO_RES_640); $link[2] = array( 'rel' => 'alternate', - 'type' => 'text/html', + 'type' => $type, 'href' => z_root() . '/photo/' . $photo_hash . '-2.' . $ph->getExt(), 'width' => $ph->getWidth(), 'height' => $ph->getHeight() @@ -308,7 +308,7 @@ function photo_upload($channel, $observer, $args) { $r3 = $ph->storeThumbnail($p, PHOTO_RES_320); $link[3] = array( 'rel' => 'alternate', - 'type' => 'text/html', + 'type' => $type, 'href' => z_root() . '/photo/' . $photo_hash . '-3.' . $ph->getExt(), 'width' => $ph->getWidth(), 'height' => $ph->getHeight() |