Changeset 3035934
- Timestamp:
- 02/15/2024 01:10:37 AM (2 years ago)
- Location:
- mycurator/trunk
- Files:
-
- 3 edited
-
MyCurator.php (modified) (2 diffs)
-
MyCurator_posttypes.php (modified) (1 diff)
-
README.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mycurator/trunk/MyCurator.php
r2996654 r3035934 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 67 * Version: 3.77 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 6');47 define ('MCT_AI_VERSION', '3.77'); 48 48 49 49 //Globals for DB -
mycurator/trunk/MyCurator_posttypes.php
r2996654 r3035934 515 515 //handle get requests for topic and ai_class, ai_class is nested in previous topic 516 516 if (isset($_GET['topic'])){ 517 $qtopic = $_GET['topic'];517 $qtopic = sanitize_text_field($_GET['topic']); 518 518 set_transient('mct_ai_lasttopic',$qtopic,60*60); 519 519 } 520 520 elseif (isset($_GET['ai_class'])){ 521 $qaiclass = $_GET['ai_class']; 521 $qaiclass = sanitize_text_field($_GET['ai_class']); 522 522 523 } 523 524 else { -
mycurator/trunk/README.txt
r2996654 r3035934 5 5 Requires at least: 3.3 6 6 Tested up to: 6.4 7 Stable tag: 3.7 67 Stable tag: 3.77 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.77 = 121 * Fix security issue 122 120 123 = 3.76 = 121 124 * Fix various PHP 8 issues 122 123 = 3.75 =124 * Fix security issue125 125 126 126 … … 131 131 132 132 133
Note: See TracChangeset
for help on using the changeset viewer.