Plugin Directory

Changeset 3490359


Ignore:
Timestamp:
03/24/2026 08:40:56 PM (8 days ago)
Author:
etruel
Message:

2.8.17 – Mar 19, 2026
General maintenance and bug fixes.

Location:
wpematico
Files:
157 added
3 edited

Legend:

Unmodified
Added
Removed
  • wpematico/trunk/app/tools_page.php

    r3367452 r3490359  
    6969
    7070            echo '<form method="post">';
    71             $nonce = wp_create_nonce('wpematico_debug_log_clear');
     71            $nonce = wp_nonce_field('wpematico_debug_log_clear', 'wpematico_debug_log_nonce', false);
    7272
    7373            echo '<textarea name="wpematico_debug_log_content" readonly rows="20" style="width:100%; font-family: monospace;">' . esc_textarea( $log_content ) . '</textarea><br><br>';
  • wpematico/trunk/readme.txt

    r3474888 r3490359  
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=B8V39NWK3NFQU
    44Tags: RSS, XML, rss to blog, feed to post, rss aggregator, content curation
    5 Stable tag: 2.8.16
     5Stable tag: 2.8.17
    66Tested up to: 7.0
    77Requires at least: 4.8
     
    214214
    215215> View complete release history at [WPeMatico Releases](https://wpematico.com/releases/)
     216
     217= 2.8.17 – Mar 19, 2026 =
     218* Improved loading of the plugin's hooks.
     219* Fixes a bug related to clearing the debug logs.
    216220
    217221= 2.8.16 – Mar 4, 2026 =
  • wpematico/trunk/wpematico.php

    r3474888 r3490359  
    44 * Plugin URI: https://www.wpematico.com
    55 * Description: Create posts automatically from RSS/Atom feeds organized into campaigns with multiples filters.  If you like it, please rate it 5 stars.
    6  * Version: 2.8.16
     6 * Version: 2.8.17
    77 * Author: Etruel Developments LLC
    88 * Author URI: https://etruel.com/wpematico/
     
    2828        private function setup_constants() {
    2929            if (!defined('WPEMATICO_VERSION'))
    30                 define('WPEMATICO_VERSION', '2.8.16');
     30                define('WPEMATICO_VERSION', '2.8.17');
    3131           
    3232            if (!defined('WPEMATICO_BASENAME'))
     
    6161                self::$instance->includes();
    6262                self::$instance->hooks();
    63                 self::$instance->setup_cron();
    6463            }
    6564            return self::$instance;
     
    103102        private function hooks() {
    104103            add_action('init', array('WPeMatico', 'init'));
    105             add_action('admin_init', array( self::$instance, 'load_textdomain' ) );
     104            add_action('init', array(self::$instance, 'load_textdomain'));
     105            add_action('init', array($this, 'setup_cron'));
    106106            add_action('the_permalink', array('WPeMatico', 'wpematico_permalink'));
    107107            add_filter('post_link', array('WPeMatico', 'wpematico_permalink'));
Note: See TracChangeset for help on using the changeset viewer.