finally fixed backlink in excerpt/summary posts

This commit is contained in:
Matthias Pfefferle 2019-02-20 20:25:19 +01:00
parent f542c18eab
commit 94ba1666f2
4 changed files with 15 additions and 5 deletions

View file

@ -4,7 +4,7 @@
**Tags:** OStatus, fediverse, activitypub, activitystream **Tags:** OStatus, fediverse, activitypub, activitystream
**Requires at least:** 4.7 **Requires at least:** 4.7
**Tested up to:** 5.1 **Tested up to:** 5.1
**Stable tag:** 0.4.2 **Stable tag:** 0.4.3
**Requires PHP:** 5.6 **Requires PHP:** 5.6
**License:** MIT **License:** MIT
**License URI:** http://opensource.org/licenses/MIT **License URI:** http://opensource.org/licenses/MIT
@ -55,6 +55,10 @@ To implement:
Project maintained on github at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub). Project maintained on github at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
### 0.4.3 ###
* finally fixed backlink in excerpt/summary posts
### 0.4.2 ### ### 0.4.2 ###
* fixed backlink in excerpt/summary posts (thanks @depone) * fixed backlink in excerpt/summary posts (thanks @depone)

View file

@ -3,7 +3,7 @@
* Plugin Name: ActivityPub * Plugin Name: ActivityPub
* Plugin URI: https://github.com/pfefferle/wordpress-activitypub/ * Plugin URI: https://github.com/pfefferle/wordpress-activitypub/
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format. * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
* Version: 0.4.2 * Version: 0.4.3
* Author: Matthias Pfefferle * Author: Matthias Pfefferle
* Author URI: https://notiz.blog/ * Author URI: https://notiz.blog/
* License: MIT * License: MIT

View file

@ -204,7 +204,9 @@ class Activitypub_Post {
public function get_the_summary() { public function get_the_summary() {
if ( 'Article' === $this->get_object_type() ) { if ( 'Article' === $this->get_object_type() ) {
return $this->get_the_post_excerpt( 400 ); $excerpt = $this->get_the_post_excerpt( 400 );
return html_entity_decode( $excerpt, ENT_QUOTES, 'UTF-8' );
} }
return null; return null;
@ -244,7 +246,7 @@ class Activitypub_Post {
} }
} }
return html_entity_decode( $excerpt, ENT_QUOTES, 'UTF-8' ); return $excerpt;
} }
/** /**

View file

@ -4,7 +4,7 @@ Donate link: https://notiz.blog/donate/
Tags: OStatus, fediverse, activitypub, activitystream Tags: OStatus, fediverse, activitypub, activitystream
Requires at least: 4.7 Requires at least: 4.7
Tested up to: 5.1 Tested up to: 5.1
Stable tag: 0.4.2 Stable tag: 0.4.3
Requires PHP: 5.6 Requires PHP: 5.6
License: MIT License: MIT
License URI: http://opensource.org/licenses/MIT License URI: http://opensource.org/licenses/MIT
@ -55,6 +55,10 @@ To implement:
Project maintained on github at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub). Project maintained on github at [pfefferle/wordpress-activitypub](https://github.com/pfefferle/wordpress-activitypub).
= 0.4.3 =
* finally fixed backlink in excerpt/summary posts
= 0.4.2 = = 0.4.2 =
* fixed backlink in excerpt/summary posts (thanks @depone) * fixed backlink in excerpt/summary posts (thanks @depone)