Plugin Directory

Changeset 2925434


Ignore:
Timestamp:
06/13/2023 03:37:28 PM (3 years ago)
Author:
mtilly
Message:

Version 3.75 update

Location:
mycurator/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • mycurator/trunk/MyCurator.php

    r2881996 r2925434  
    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.74
     7 * Version: 3.75
    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.74');
     47define ('MCT_AI_VERSION', '3.75');
    4848
    4949//Globals for DB
     
    23242324    }
    23252325    //Set up the filter variables
     2326    if (isset($_REQUEST['Filter'])){
     2327        check_admin_referer('mct_ai_logsspg','logfilter');
     2328        $currentPage = 1;  //reset paging when a filter selected
     2329    }
    23262330    if (isset($_REQUEST['topic'])){
    23272331        if ($_REQUEST['topic'] == 'ALL'){
     
    23562360    if ($type == MCT_AI_LOG_PROCESS) $type = '%'; //Get all records
    23572361   
    2358     if (isset($_REQUEST['Filter'])){
    2359         $currentPage = 1;  //reset paging when a filter selected
    2360     }
    23612362    if (isset($_REQUEST['Reset-Log'])){
     2363        check_admin_referer('mct_ai_logsspg','logreset');
    23622364        mct_ai_clearlogs();
    23632365    }
     
    23992401         to your Topics or Formatting options and wish to reset MyCurator to process all articles again.
    24002402         <form id="Reset" method="post" >
     2403             <?php wp_nonce_field('mct_ai_logsspg','logreset'); ?>
    24012404         <input name="Reset-Log" value="Reset Logs" type="submit" class="button-secondary" onclick="return confirm('Are you sure you want to Reset MyCurator Logs?  You may end up with a lot of duplicate articles on your training page!');" >
    24022405         </form></p>
     
    24562459        //Search field
    24572460        echo ' Search Message and URL Fields: <input name="search" type="text" id="search" size="20" maxlength="50" value="" />';
    2458        
     2461        wp_nonce_field('mct_ai_logsspg','logfilter');
    24592462        echo ' <input name="Filter" value="Select Filter" type="submit" class="button-secondary">';
    24602463        echo '</form></div>';
  • mycurator/trunk/README.txt

    r2896037 r2925434  
    55Requires at least: 3.3
    66Tested up to: 6.2
    7 Stable tag: 3.74
     7Stable tag: 3.75
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    118118== Changelog ==
    119119
     120= 3.75 =
     121* Fix security issue
     122
    120123= 3.74 =
    121124* Fix various HTML issues
    122 
    123 = 3.73 =
    124 * Fix issue with array handling for PHP 8
    125 * Fix warnings for PHP 8
    126125
    127126
     
    131130
    132131
    133 
Note: See TracChangeset for help on using the changeset viewer.