Changeset 3172510
- Timestamp:
- 10/20/2024 10:21:36 PM (17 months ago)
- Location:
- mycurator/trunk
- Files:
-
- 4 edited
-
MyCurator.php (modified) (2 diffs)
-
MyCurator_local_proc.php (modified) (1 diff)
-
MyCurator_posttypes.php (modified) (1 diff)
-
README.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mycurator/trunk/MyCurator.php
r3120652 r3172510 5 5 * Plugin URI: http://www.target-info.com 6 6 * Description: Automatically curates articles from your feeds and alerts, using the Relevance engine to find only the articles you like 7 * Version: 3.7 87 * Version: 3.79 8 8 * Author: Mark Tilly 9 9 * Author URL: http://www.target-info.com … … 45 45 define ('MCT_AI_LOG_PROCESS','PROCESS'); 46 46 define ('MCT_AI_LOG_REQUEST','REQUEST'); 47 define ('MCT_AI_VERSION', '3.7 8');47 define ('MCT_AI_VERSION', '3.79'); 48 48 49 49 //Globals for DB -
mycurator/trunk/MyCurator_local_proc.php
r2996654 r3172510 939 939 if (!empty($tagterm) && !is_wp_error($tagterm)) $details['tags_input'] = array($tagterm->name); 940 940 } 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']; 942 942 } 943 943 $details['post_category'] = array($topic['topic_cat']); -
mycurator/trunk/MyCurator_posttypes.php
r3035934 r3172510 1263 1263 if (empty($_POST['newlinkcat'])) $msg .= "Must choose a Source Group. "; 1264 1264 } 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'],""))); 1267 1267 $args['rss-url'] = esc_url($_POST['rss-url']); 1268 1268 $args['save-url'] = parse_url($args['rss-url'], PHP_URL_HOST); -
mycurator/trunk/README.txt
r3120652 r3172510 5 5 Requires at least: 3.3 6 6 Tested up to: 6.6 7 Stable tag: 3.7 87 Stable tag: 3.79 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 118 118 == Changelog == 119 119 120 = 3.79 = 121 * Fix Search 2 Keywords to Tags issue with Phrases 122 * Fix Security Issue 123 120 124 = 3.78 = 121 125 * Fix PHP8 Issue 122 123 = 3.77 =124 * Fix security issue125 126 126 127
Note: See TracChangeset
for help on using the changeset viewer.