Changeset 2925434
- Timestamp:
- 06/13/2023 03:37:28 PM (3 years ago)
- Location:
- mycurator/trunk
- Files:
-
- 2 edited
-
MyCurator.php (modified) (6 diffs)
-
README.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mycurator/trunk/MyCurator.php
r2881996 r2925434 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 47 * Version: 3.75 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 4');47 define ('MCT_AI_VERSION', '3.75'); 48 48 49 49 //Globals for DB … … 2324 2324 } 2325 2325 //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 } 2326 2330 if (isset($_REQUEST['topic'])){ 2327 2331 if ($_REQUEST['topic'] == 'ALL'){ … … 2356 2360 if ($type == MCT_AI_LOG_PROCESS) $type = '%'; //Get all records 2357 2361 2358 if (isset($_REQUEST['Filter'])){2359 $currentPage = 1; //reset paging when a filter selected2360 }2361 2362 if (isset($_REQUEST['Reset-Log'])){ 2363 check_admin_referer('mct_ai_logsspg','logreset'); 2362 2364 mct_ai_clearlogs(); 2363 2365 } … … 2399 2401 to your Topics or Formatting options and wish to reset MyCurator to process all articles again. 2400 2402 <form id="Reset" method="post" > 2403 <?php wp_nonce_field('mct_ai_logsspg','logreset'); ?> 2401 2404 <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!');" > 2402 2405 </form></p> … … 2456 2459 //Search field 2457 2460 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'); 2459 2462 echo ' <input name="Filter" value="Select Filter" type="submit" class="button-secondary">'; 2460 2463 echo '</form></div>'; -
mycurator/trunk/README.txt
r2896037 r2925434 5 5 Requires at least: 3.3 6 6 Tested up to: 6.2 7 Stable tag: 3.7 47 Stable tag: 3.75 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.75 = 121 * Fix security issue 122 120 123 = 3.74 = 121 124 * Fix various HTML issues 122 123 = 3.73 =124 * Fix issue with array handling for PHP 8125 * Fix warnings for PHP 8126 125 127 126 … … 131 130 132 131 133
Note: See TracChangeset
for help on using the changeset viewer.