Version 0.0.15.2
Fix: a syntax error was introduced in v0.0.15.1 -----BEGIN PGP SIGNATURE----- iH4EABMKAAYFAlgRIhEACgkQGyx2r7FshZvD1gF/aOUWLVgsdccIbn1OejZMHDQy Vu1C+Wni4BacNySgKfE2Morr1xERDRQBhBs7DJFfAYDc8hEcxJJdKOtWyDWYPk8H bw7OzhOcVCgD4QLITl0WFi76gQ6CDVa/0u2JDVJWLeo= =gywc -----END PGP SIGNATURE----- Merge tag 'v0.0.15.2' into develop Version 0.0.15.2 Fix: a syntax error was introduced in v0.0.15.1
This commit is contained in:
commit
7b8f933c1e
2 changed files with 5 additions and 2 deletions
|
@ -81,14 +81,14 @@ class NoteService
|
|||
|
||||
//micropub request, syndication sent as array
|
||||
if (
|
||||
(is_array($request->input('syndicate-to'))
|
||||
(is_array($request->input('syndicate-to')))
|
||||
&&
|
||||
(in_array('https://twitter.com/jonnybarnes', $request->input('syndicate-to')))
|
||||
) {
|
||||
dispatch(new SyndicateToTwitter($note));
|
||||
}
|
||||
if (
|
||||
(is_array($request->input('syndicate-to'))
|
||||
(is_array($request->input('syndicate-to')))
|
||||
&&
|
||||
(in_array('https://facebook.com/jonnybarnes', $request->input('syndicate-to')))
|
||||
) {
|
||||
|
|
|
@ -1,5 +1,8 @@
|
|||
# Changelog
|
||||
|
||||
## Version 0.0.15.2 (2016-10-26)
|
||||
- Fix: syntax error introduced in v0.0.15.1
|
||||
|
||||
## Version 0.0.15.1 (2016-10-26)
|
||||
- Add facebook as a syndication target
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue