| @@ -2,9 +2,9 @@ | ||
| 2 | 2 | /* |
| 3 | 3 | Plugin Name: FeedWordPress |
| 4 | 4 | Plugin URI: https://fwpplugin.com/ |
| 5 | 5 | Description: simple and flexible Atom/RSS syndication for WordPress |
| 6 | -Version: 2026.0517 | |
| 6 | +Version: 2025.1211 | |
| 7 | 7 | Author: C. Johnson |
| 8 | 8 | Author URI: https://fwpplugin.com/contact/ |
| 9 | 9 | License: GPL |
| 10 | 10 | */ |
| @@ -10,9 +10,9 @@ | ||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * @package FeedWordPress |
| 14 | - * @version 2026.0517 | |
| 14 | + * @version 2025.1211 | |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | 17 | # This plugin uses code derived from: |
| 18 | 18 | # - wp-rss-aggregate.php by Kellan Elliot-McCrea <kellan@protest.net> |
| @@ -29,9 +29,9 @@ | ||
| 29 | 29 | #################################################################################### |
| 30 | 30 | ## CONSTANTS & DEFAULTS ############################################################ |
| 31 | 31 | #################################################################################### |
| 32 | 32 | |
| 33 | -define ('FEEDWORDPRESS_VERSION', '2026.0517'); | |
| 33 | +define ('FEEDWORDPRESS_VERSION', '2025.1211'); | |
| 34 | 34 | define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'https://fwpplugin.com/contact' ); |
| 35 | 35 | |
| 36 | 36 | if ( ! defined( 'FEEDWORDPRESS_BLEG' ) ) : |
| 37 | 37 | define ( 'FEEDWORDPRESS_BLEG', true ); |
| @@ -2126,9 +2126,9 @@ | ||
| 2126 | 2126 | */ |
| 2127 | 2127 | static function diagnostic( $level, $out, $persist = null, $since = null, $mostRecent = null ) { |
| 2128 | 2128 | global $feedwordpress_admin_footer; |
| 2129 | 2129 | |
| 2130 | - $output = (array) get_option( 'feedwordpress_diagnostics_output', array() ); | |
| 2130 | + $output = get_option( 'feedwordpress_diagnostics_output', array() ); | |
| 2131 | 2131 | $dlog = get_option( 'feedwordpress_diagnostics_log', array() ); |
| 2132 | 2132 | |
| 2133 | 2133 | $diagnostic_nesting = count( explode( ":", $level ) ); |
| 2134 | 2134 | |