Changeset 3347812
- Timestamp:
- 08/21/2025 01:35:47 AM (7 months ago)
- Location:
- fulltext-search/trunk
- Files:
-
- 4 edited
-
fulltext-search.php (modified) (5 diffs)
-
includes/wpfts_core.php (modified) (2 diffs)
-
js/wpfts_script.js (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fulltext-search/trunk/fulltext-search.php
r3279029 r3347812 4 4 Plugin Name: WP Fast Total Search - The Power of Indexed Search 5 5 Description: Extends the default search with relevance, jet speed and ability to search any posts, metadata, taxonomy, shortcode content and any piece of the wordpress data. No external software/service required. 6 Version: 1.79.27 07 Tested up to: 6.8 6 Version: 1.79.274 7 Tested up to: 6.8.2 8 8 Author: Epsiloncool 9 9 Author URI: https://e-wm.org … … 15 15 16 16 /** 17 * Copyright 2013-202 4Epsiloncool17 * Copyright 2013-2025 Epsiloncool 18 18 * 19 19 * This program is free software: you can redistribute it and/or modify … … 36 36 ****************************************************************************** 37 37 * 38 * @copyright 2013-202 438 * @copyright 2013-2025 39 39 * @license GPLv3 40 * @version 1.79.27 040 * @version 1.79.274 41 41 * @package WP Fast Total Search 42 42 * @author Epsiloncool <info@e-wm.org> … … 63 63 */ 64 64 65 define('WPFTS_VERSION', '1.79.27 0');65 define('WPFTS_VERSION', '1.79.274'); 66 66 67 67 if (file_exists(dirname(__FILE__).'/extensions/index.php')) { … … 397 397 document.wpfts_mid = "<?php echo esc_html(addslashes($mid)); ?>"; 398 398 document.wpfts_last_ts = <?php echo isset($wpfts_gstatus['ts']) ? intval($wpfts_gstatus['ts']) : 0; ?>; 399 document.nonce_setpause = "<?php echo wp_create_nonce( 'setpause_nonce' ); ?>"; 400 399 401 </script><?php 400 402 -
fulltext-search/trunk/includes/wpfts_core.php
r3271609 r3347812 2005 2005 2006 2006 if (($data = $jx->getData()) !== false) { 2007 //if (wp_verify_nonce($data['wpfts_options-nonce'], 'wpfts_options')) {2007 if (wp_verify_nonce($data['_nonce'], 'setpause_nonce')) { 2008 2008 2009 2009 $is_pause = isset($data['is_pause']) ? intval($data['is_pause']) : 0; … … 2016 2016 $jx->variable('code', 0); 2017 2017 2018 //} else {2019 //$jx->alert(__('The form is outdated. Please refresh the page and try again.', 'fulltext-search'));2020 //}2018 } else { 2019 $jx->alert(__('The form is outdated. Please refresh the page and try again.', 'fulltext-search')); 2020 } 2021 2021 } 2022 2022 $jx->echoJSON(); -
fulltext-search/trunk/js/wpfts_script.js
r3254742 r3347812 439 439 var data = { 440 440 'is_pause': 1, 441 '_nonce': document.nonce_setpause, 441 442 }; 442 443 … … 462 463 var data = { 463 464 'is_pause': 0, 465 '_nonce': document.nonce_setpause, 464 466 }; 465 467 -
fulltext-search/trunk/readme.txt
r3279039 r3347812 3 3 Tags: search pdf, fulltext search, better search, relevant search, extended search 4 4 Requires at least: 5.0 5 Tested up to: 6.8 6 Stable tag: 1.79.27 05 Tested up to: 6.8.2 6 Stable tag: 1.79.274 7 7 License: GPLv3 8 8 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 122 122 123 123 == Changelog == 124 125 = 1.79.274 = 126 * Security fix to close non-critical breach 124 127 125 128 = 1.79.270 =
Note: See TracChangeset
for help on using the changeset viewer.