From ccc26ddbc45b197ecaf97678c84a06eef334c73b Mon Sep 17 00:00:00 2001 From: David Shanske Date: Wed, 6 Dec 2023 04:35:46 +0000 Subject: [PATCH] Fix minor issue --- includes/class-social-plugins.php | 2 +- readme.md | 5 ++++- readme.txt | 5 ++++- syndication-links.php | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/includes/class-social-plugins.php b/includes/class-social-plugins.php index cdacd70..84891ee 100644 --- a/includes/class-social-plugins.php +++ b/includes/class-social-plugins.php @@ -162,7 +162,7 @@ public static function wptotwitter_to_syn_links( $connection, $id ) { } $account = get_option( 'wtt_twitter_username' ); - $uid = get_post_meta( $id, _wpt_tweet_id, true ); + $uid = get_post_meta( $id, '_wpt_tweet_id', true ); if ( ! $account || ! $uid ) { return; } diff --git a/readme.md b/readme.md index 941ddbb..9a0d696 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ **Contributors:** [dshanske](https://profiles.wordpress.org/dshanske/) **Tags:** syndication, indieweb, indiewebcamp, POSSE, social media, sharing **Tested up to:** 6.4 -**Stable tag:** 4.4.14 +**Stable tag:** 4.4.15 **License:** GPLv2 or later A simple way to link to copies of your [cross-posted](https://indieweb.org/cross-posting) content in other social networks or websites. Now with posting UI. @@ -169,6 +169,9 @@ In no particular order... ## Changelog ## +### Version 4.4.15 ( 2023-12-05 ) ### +* Fix issue with constant + ### Version 4.4.14 ( 2023-12-01 ) ### * Update support for WP-To-Twitter plugin, now Xposter. diff --git a/readme.txt b/readme.txt index df737d5..d7dccc0 100755 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: dshanske Tags: syndication, indieweb, indiewebcamp, POSSE, social media, sharing Tested up to: 6.4 -Stable tag: 4.4.14 +Stable tag: 4.4.15 License: GPLv2 or later A simple way to link to copies of your [cross-posted](https://indieweb.org/cross-posting) content in other social networks or websites. Now with posting UI. @@ -165,6 +165,9 @@ In no particular order... == Changelog == += Version 4.4.15 ( 2023-12-05 ) = +* Fix issue with constant + = Version 4.4.14 ( 2023-12-01 ) = * Update support for WP-To-Twitter plugin, now Xposter. diff --git a/syndication-links.php b/syndication-links.php index e75e57d..4b9b3d1 100755 --- a/syndication-links.php +++ b/syndication-links.php @@ -3,7 +3,7 @@ * Plugin Name: Syndication Links * Plugin URI: http://wordpress.org/plugins/syndication-links * Description: Add Links to Syndicated Copies of Your Posts - * Version: 4.4.14 + * Version: 4.4.15 * Requires at least: 4.9.9 * Requires PHP: 7.0 * Author: David Shanske