Posts: 774
Threads: 39
Joined: Aug 2009
Reputation:
28
7.2.1
Fixed a bug where the topic prefix was not included in the subject line for trimming longer subject lines for the post.
Posts: 1
Threads: 0
Joined: Apr 2023
Reputation:
0
How do I change the description to content. I want it to get the content from the content variable.
Posts: 774
Threads: 39
Joined: Aug 2009
Reputation:
28
Are both present in the feed? It should pickup either or.
Posts: 774
Threads: 39
Joined: Aug 2009
Reputation:
28
Major Update!
8.0
+GUID-based deduplication with configurable method (GUID, Link, or Content Hash)
+Content filtering with include/exclude keywords or regex patterns per feed
+Custom post templates with {title}, {body}, {link}, {source}, {author}, {date}, {footer}, {enclosures} placeholders
+Default post template setting with automatic population on install/upgrade
+Media/enclosure handling embeds images, audio, and video from feed enclosures
+Feed error tracking and health display with last success time and error count
+Automatic retry with exponential backoff and auto-disable after configurable max retries
+Auto-purge old feed log entries with configurable retention period (default 90 days)
+WebSub (PubSubHubbub) support for real-time push updates from supported feeds
+WebSub management page to subscribe/unsubscribe feeds with discovered hubs
+WebSub callback handler (websub_callback.php) for hub verification and content delivery
+Feed preview page to inspect feed items before adding a feed
+OPML import for bulk feed creation from an OPML file
+OPML export to download all feeds as an OPML file
+Per-feed import log viewer with pagination
+Footer append text field per feed
+Total posts counter per feed displayed in feed list
+Last success and error columns in feed list overview
+Content field (content:encoded) support with preference over description
+Use description setting to choose between content and description fields
+Global settings form on main feed list page (auto-purge, default template, WebSub, use description)
+MyBB settings group integration for plugin settings (Settings & Options > RSS Feed Poster)
!Fixed assignment vs comparison bug in HTTPS scheme detection in GetRSSData (= changed to ==)
!Fixed deactivate function deleting wrong task name (fssfeedposter changed to rssfeedposter)
!Fixed usefeeddate reading from wrong variable ($context['feeditems'] changed to $feed)
!Fixed missing braces on else block causing insert_thread success path to always execute
!Added CSRF protection (verify_post_check) to all state-changing actions (add, edit, delete, save settings, OPML import, WebSub)
!Added my_post_key hidden field to add form (edit form already had it)
!Added my_post_key parameter to delete links
!Replaced all addslashes() with $db->escape_string() for SQL injection prevention
!Added $db->escape_string() on feed URL in add/edit SQL queries
!Added htmlspecialchars_uni() on all user data in feed list cells and form field values
!Added feed URL validation requiring http/https scheme and valid host
!Added download timeout (30s) and max file size (2MB) to cURL method
!Added stream context with timeout (30s) and 2MB read limit to fopen method
!Added stream_set_timeout (30s) and 2MB read limit to fsockopen method
!Changed feedhash column from TINYTEXT to VARCHAR(32) for indexing
!Added index on feedbot_log.feedhash for faster duplicate lookups
!Added index on feedbot_log.item_guid for GUID-based queries
!Refactored schema migration to use $db->field_exists() instead of SHOW COLUMNS
!Added item_guid and error_message columns to feedbot_log table
!Settings properly cleaned up on plugin uninstall