Version 0.0.15.9
Fixing an issue in displaying webmentions caused by an errant variable name in the logic. -----BEGIN PGP SIGNATURE----- iPQEABMKAHwFAlggcvNfFIAAAAAALgAoaXNzdWVyLWZwckBub3RhdGlvbnMub3Bl bnBncC5maWZ0aGhvcnNlbWFuLm5ldDg0MTlCNUExRDg4NENBRjRCMEFGOEZCMzFC MkM3NkFGQjE2Qzg1OUIVHGpvbm55QGpvbm55YmFybmVzLnVrAAoJEBssdq+xbIWb 4TcBgOKdQCv1pBOTlQj0Ckdbspemp0NHKrheUvbG6JznV5JwBf8EHAFPd0xNI44c 3t4mnAGAoYyXLy8C/y4XpJdKMl6kbANzFsZkBmuXbbfFTv7BTSFXwktRWACxzsXC OvAql52i =SvGY -----END PGP SIGNATURE----- Merge tag 'v0.0.15.9' into develop Version 0.0.15.9 Fixing an issue in displaying webmentions caused by an errant variable name in the logic.
This commit is contained in:
commit
d661aa23c0
2 changed files with 4 additions and 1 deletions
|
@ -107,7 +107,7 @@ class NotesController extends Controller
|
|||
if (isset($microformats['items'][0]['properties']['published'][0])) {
|
||||
$content['date'] = $carbon->parse($microformats['items'][0]['properties']['published'][0])->toDayDateTimeString();
|
||||
} else {
|
||||
$content['date'] = $note->webmention->updated_at->toDayDateTimeString();
|
||||
$content['date'] = $webmention->updated_at->toDayDateTimeString();
|
||||
}
|
||||
$content['reply'] = $this->filterHTML($microformats['items'][0]['properties']['content'][0]['html']);
|
||||
$replies[] = $content;
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# Changelog
|
||||
|
||||
## Version 0.0.15.9 (2016-11-07)
|
||||
- Hotfix: not using cerated variable of foreach loop
|
||||
|
||||
## Version 0.0.15.8 (2016-11-07)
|
||||
- Hotfix: facebook’s love-of appears as an in-reply-to without a published date
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue