Changeset 3345320
- Timestamp:
- 08/15/2025 11:34:43 PM (6 months ago)
- Location:
- enhanced-autoload-manager/trunk
- Files:
-
- 2 edited
-
enhanced-autoload-manager.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
enhanced-autoload-manager/trunk/enhanced-autoload-manager.php
r3330448 r3345320 4 4 Plugin URI: https://raiansar.com/enhanced-autoload-manager 5 5 Description: Manages autoloaded data in the WordPress database, allowing for individual deletion or disabling of autoload entries. 6 Version: 1.5. 66 Version: 1.5.7 7 7 Author: Rai Ansar 8 8 Author URI: https://raiansar.com … … 25 25 } 26 26 if (!defined('EDAL_VERSION')) { 27 define('EDAL_VERSION', '1.5. 6');27 define('EDAL_VERSION', '1.5.7'); 28 28 } 29 29 … … 279 279 <input type="hidden" name="orderby" value="<?php echo esc_attr($orderby); ?>"> 280 280 <input type="hidden" name="order" value="<?php echo esc_attr($order); ?>"> 281 <?php wp_nonce_field('edal_view_page', '_wpnonce', false); ?> 281 282 <div class="edal-search-input-wrapper"> 282 283 <input type="text" name="search" id="edal-search-input" placeholder="<?php esc_attr_e('Search autoload options...', 'enhanced-autoload-manager'); ?>" value="<?php echo esc_attr($search); ?>" class="regular-text"> 283 284 <button type="submit" class="button button-secondary"><span class="dashicons dashicons-search"></span></button> 284 285 <?php if (!empty($search)): ?> 285 <a href="<?php echo esc_url( remove_query_arg('search')); ?>" class="button button-link" title="<?php esc_attr_e('Clear search', 'enhanced-autoload-manager'); ?>">286 <a href="<?php echo esc_url($this->get_admin_url(array('mode' => $mode, 'count' => $count, 'orderby' => $orderby, 'order' => $order))); ?>" class="button button-link" title="<?php esc_attr_e('Clear search', 'enhanced-autoload-manager'); ?>"> 286 287 <span class="dashicons dashicons-no-alt"></span> 287 288 </a> -
enhanced-autoload-manager/trunk/readme.txt
r3330448 r3345320 4 4 Requires at least: 5.0 5 5 Tested up to: 6.8 6 Stable tag: 1.5. 66 Stable tag: 1.5.7 7 7 Requires PHP: 7.4 8 8 License: GPLv3 or later … … 67 67 == Changelog == 68 68 69 = 1.5.7 = 70 * Fixed search form security check error - added missing nonce field 71 * Fixed clear search link to include proper nonce 72 * Search functionality now properly validates security tokens 73 69 74 = 1.5.6 = 70 75 * Fixed AJAX refresh data error - corrected nonce verification issue
Note: See TracChangeset
for help on using the changeset viewer.