Plugin Directory

Changeset 3172510


Ignore:
Timestamp:
10/20/2024 10:21:36 PM (17 months ago)
Author:
mtilly
Message:

Update to 3.79

Location:
mycurator/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mycurator/trunk/MyCurator.php

    r3120652 r3172510  
    55 * Plugin URI: http://www.target-info.com
    66 * Description: Automatically curates articles from your feeds and alerts, using the Relevance engine to find only the articles you like
    7  * Version: 3.78
     7 * Version: 3.79
    88 * Author: Mark Tilly
    99 * Author URL: http://www.target-info.com
     
    4545define ('MCT_AI_LOG_PROCESS','PROCESS');
    4646define ('MCT_AI_LOG_REQUEST','REQUEST');
    47 define ('MCT_AI_VERSION', '3.78');
     47define ('MCT_AI_VERSION', '3.79');
    4848
    4949//Globals for DB
  • mycurator/trunk/MyCurator_local_proc.php

    r2996654 r3172510  
    939939                if (!empty($tagterm) && !is_wp_error($tagterm)) $details['tags_input'] = array($tagterm->name);
    940940            } else {
    941                 if (!empty($post_arr['tags'])) $details['tags_input'] = $post_arr['tags'];
     941                if (!empty($post_arr['tags'])) $details['tags_input'] = implode(" ", $post_arr); //$post_arr['tags'];
    942942            }
    943943            $details['post_category'] = array($topic['topic_cat']);
  • mycurator/trunk/MyCurator_posttypes.php

    r3035934 r3172510  
    12631263            if (empty($_POST['newlinkcat'])) $msg .= "Must choose a Source Group. ";
    12641264        }
    1265         $args['newlinkcat'] = trim(sanitize_text_field($_POST['newlinkcat']));
    1266         $args['feed_name'] = trim(sanitize_text_field($_POST['feed_name']));
     1265        $args['newlinkcat'] = trim(sanitize_text_field(wp_kses($_POST['newlinkcat'],"")));
     1266        $args['feed_name'] = trim(sanitize_text_field(wp_kses($_POST['feed_name'],"")));
    12671267        $args['rss-url'] =  esc_url($_POST['rss-url']);
    12681268        $args['save-url'] = parse_url($args['rss-url'], PHP_URL_HOST);
  • mycurator/trunk/README.txt

    r3120652 r3172510  
    55Requires at least: 3.3
    66Tested up to: 6.6
    7 Stable tag: 3.78
     7Stable tag: 3.79
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    118118== Changelog ==
    119119
     120= 3.79 =
     121* Fix Search 2 Keywords to Tags issue with Phrases
     122* Fix Security Issue
     123
    120124= 3.78 =
    121125* Fix PHP8 Issue
    122 
    123 = 3.77 =
    124 * Fix security issue
    125126
    126127
Note: See TracChangeset for help on using the changeset viewer.