Changeset 3371290
- Timestamp:
- 10/01/2025 03:45:16 PM (3 months ago)
- Location:
- mihdan-no-external-links
- Files:
-
- 8 edited
- 1 copied
-
tags/5.1.7 (copied) (copied from mihdan-no-external-links/trunk)
-
tags/5.1.7/admin/MaskTable.php (modified) (3 diffs)
-
tags/5.1.7/mihdan-no-external-links.php (modified) (2 diffs)
-
tags/5.1.7/readme.txt (modified) (2 diffs)
-
tags/5.1.7/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/admin/MaskTable.php (modified) (3 diffs)
-
trunk/mihdan-no-external-links.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
mihdan-no-external-links/tags/5.1.7/admin/MaskTable.php
r3369336 r3371290 312 312 $redirect = wp_get_raw_referer(); 313 313 314 $nonce = isset( $_REQUEST['_wpnonce'] )314 $nonce = ! empty( $_REQUEST['_wpnonce'] ) 315 315 ? sanitize_text_field( wp_unslash( $_REQUEST['_wpnonce'] ) ) 316 316 : ''; 317 317 318 if ( ! empty( $nonce ) && ! wp_verify_nonce( $nonce, $this->options_prefix . 'delete_mask' ) ) { 319 wp_die( esc_html__( 'Are you sure you want to do this?', $this->plugin_name ) ); 320 } 321 322 if ( 'delete' === $this->current_action() ) { 323 324 $mask = isset( $_GET['mask'] ) ? absint( $_GET['mask'] ) : ''; 318 if ( 'delete' === $this->current_action() && wp_verify_nonce( $nonce, $this->options_prefix . 'delete_mask' ) ) { 319 320 $mask = ! empty( $_GET['mask'] ) ? absint( $_GET['mask'] ) : ''; 325 321 $delete = $this->delete_mask( $mask ); 326 322 … … 336 332 } 337 333 338 $action = isset( $_POST['action'] ) ? sanitize_text_field( wp_unslash( $_POST['action'] ) ) : ''; 339 $action2 = isset( $_POST['action2'] ) ? sanitize_text_field( wp_unslash( $_POST['action2'] ) ) : ''; 340 341 if ( 'bulk-delete' === $action || 'bulk-delete' === $action2 ) { 334 if ( 'bulk-delete' === $this->current_action() && wp_verify_nonce( $nonce, 'bulk-' . $this->_args['plural'] ) ) { 342 335 343 336 $delete_count = 0; … … 357 350 exit; 358 351 } 359 360 352 } 361 353 -
mihdan-no-external-links/tags/5.1.7/mihdan-no-external-links.php
r3370304 r3371290 11 11 * Plugin URI: https://www.kobzarev.com/projects/no-external-links/ 12 12 * Description: Convert external links into internal links, site wide or post/page specific. Add NoFollow, Click logging, and more... 13 * Version: 5.1. 6.213 * Version: 5.1.7 14 14 * Author: Mikhail Kobzarev 15 15 * Author URI: https://www.kobzarev.com/ … … 29 29 30 30 const MIHDAN_NO_EXTERNAL_LINKS_DIR = __DIR__; 31 const MIHDAN_NO_EXTERNAL_LINKS_VERSION = '5.1. 6.2';31 const MIHDAN_NO_EXTERNAL_LINKS_VERSION = '5.1.7'; 32 32 const MIHDAN_NO_EXTERNAL_LINKS_SLUG = 'mihdan-no-external-links'; 33 33 -
mihdan-no-external-links/tags/5.1.7/readme.txt
r3370304 r3371290 5 5 Requires at least: 5.7.4 6 6 Tested up to: 6.8 7 Stable tag: 5.1. 6.27 Stable tag: 5.1.7 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 69 69 70 70 == Changelog == 71 72 = 5.1.7 (01.10.2025) = 73 * Resolved #[41](https://github.com/mihdan/mihdan-no-external-links/issues/41) 71 74 72 75 = 5.1.6 (28.09.2025) = -
mihdan-no-external-links/tags/5.1.7/vendor/composer/installed.php
r3370304 r3371290 2 2 'root' => array( 3 3 'name' => 'mihdan/mihdan-no-external-links', 4 'pretty_version' => '5.1. 6.2',5 'version' => '5.1. 6.2',6 'reference' => ' cb51fe4656bc5a0167523e6490bcfb8bbe89d17f',4 'pretty_version' => '5.1.7', 5 'version' => '5.1.7.0', 6 'reference' => 'a5a5c6482c6d1f6b2c361b98a94a478d8505694d', 7 7 'type' => 'wordpress-plugin', 8 8 'install_path' => __DIR__ . '/../../', … … 12 12 'versions' => array( 13 13 'mihdan/mihdan-no-external-links' => array( 14 'pretty_version' => '5.1. 6.2',15 'version' => '5.1. 6.2',16 'reference' => ' cb51fe4656bc5a0167523e6490bcfb8bbe89d17f',14 'pretty_version' => '5.1.7', 15 'version' => '5.1.7.0', 16 'reference' => 'a5a5c6482c6d1f6b2c361b98a94a478d8505694d', 17 17 'type' => 'wordpress-plugin', 18 18 'install_path' => __DIR__ . '/../../', -
mihdan-no-external-links/trunk/admin/MaskTable.php
r3369336 r3371290 312 312 $redirect = wp_get_raw_referer();