| @@ -2,9 +2,9 @@ | ||
| 2 | 2 | /* |
| 3 | 3 | Plugin Name: FeedWordPress |
| 4 | 4 | Plugin URI: http://feedwordpress.radgeek.com/ |
| 5 | 5 | Description: simple and flexible Atom/RSS syndication for WordPress |
| 6 | -Version: 2016.1213 | |
| 6 | +Version: 2017.0913 | |
| 7 | 7 | Author: Charles Johnson |
| 8 | 8 | Author URI: http://radgeek.com/ |
| 9 | 9 | License: GPL |
| 10 | 10 | */ |
| @@ -10,9 +10,9 @@ | ||
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * @package FeedWordPress |
| 14 | - * @version 2016.1213 | |
| 14 | + * @version 2017.0913 | |
| 15 | 15 | */ |
| 16 | 16 | |
| 17 | 17 | # This uses code derived from: |
| 18 | 18 | # - wp-rss-aggregate.php by Kellan Elliot-McCrea <kellan@protest.net> |
| @@ -31,9 +31,9 @@ | ||
| 31 | 31 | # <http://feedwordpress.radgeek.com/wiki/quick-start/> for some details. |
| 32 | 32 | |
| 33 | 33 | # -- Don't change these unless you know what you're doing... |
| 34 | 34 | |
| 35 | -define ('FEEDWORDPRESS_VERSION', '2016.1213'); | |
| 35 | +define ('FEEDWORDPRESS_VERSION', '2017.0913'); | |
| 36 | 36 | define ('FEEDWORDPRESS_AUTHOR_CONTACT', 'http://radgeek.com/contact'); |
| 37 | 37 | |
| 38 | 38 | if (!defined('FEEDWORDPRESS_BLEG')) : |
| 39 | 39 | define ('FEEDWORDPRESS_BLEG', true); |
| @@ -1822,9 +1822,10 @@ | ||
| 1822 | 1822 | global $wpdb; |
| 1823 | 1823 | |
| 1824 | 1824 | // Explicit update request in the HTTP request (e.g. from a cron job) |
| 1825 | 1825 | if (self::update_requested()) : |
| 1826 | - | |
| 1826 | + /*DBG*/ header("Content-Type: text/plain"); | |
| 1827 | + | |
| 1827 | 1828 | $this->update_hooked = "Initiating a CRON JOB CHECK-IN ON UPDATE SCHEDULE due to URL parameter = ".trim($this->val($_REQUEST['update_feedwordpress'])); |
| 1828 | 1829 | |
| 1829 | 1830 | $this->update($this->update_requested_url()); |
| 1830 | 1831 | |