Changeset 3491191
- Timestamp:
- 03/25/2026 07:46:38 PM (3 days ago)
- Location:
- wp-external-links/trunk
- Files:
-
- 5 edited
-
includes/admin/class-wpel-network-page.php (modified) (1 diff)
-
includes/admin/class-wpel-settings-page.php (modified) (1 diff)
-
includes/class-wpel-front.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
wp-external-links.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-external-links/trunk/includes/admin/class-wpel-network-page.php
r3168060 r3491191 56 56 57 57 // set default tab 58 if ( ! key_exists( $this->current_tab, $this->tabs ) ) {58 if ( !isset($this->current_tab) || ! key_exists( $this->current_tab, $this->tabs ) ) { 59 59 reset( $this->tabs ); 60 60 $this->current_tab = key( $this->tabs ); -
wp-external-links/trunk/includes/admin/class-wpel-settings-page.php
r3168060 r3491191 97 97 98 98 // set default tab 99 if ( !key_exists($this->current_tab, $this->tabs)) {99 if ( !isset($this->current_tab) || !key_exists($this->current_tab, $this->tabs)) { 100 100 reset($this->tabs); 101 101 $this->current_tab = key($this->tabs); -
wp-external-links/trunk/includes/class-wpel-front.php
r3168060 r3491191 296 296 $title = $link->get_attr( 'title' ); 297 297 $text = $link->get_content(); 298 $new_title = str_replace( array( '{title}', '{text}', '{text_clean}' ), array( esc_attr( $title ), esc_attr( $text ), esc_attr( $text ) ), $title_format ); 299 298 $new_title = str_replace( array( '{title}', '{text}', '{text_clean}' ), array( wp_strip_all_tags( $title ), wp_strip_all_tags( $text ), wp_strip_all_tags( $text ) ), $title_format ); 300 299 if ( $new_title ) { 301 300 $link->set_attr( 'title', $new_title ); -
wp-external-links/trunk/readme.txt
r3326614 r3491191 3 3 Tags: new window, new tab, external links, nofollow, noopener 4 4 Requires at least: 4.2 5 Tested up to: 6. 85 Tested up to: 6.9 6 6 Requires PHP: 7.2 7 Stable tag: 2.6 37 Stable tag: 2.64 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 244 244 245 245 == Changelog == 246 = 2.64 = 247 * 2026-03-21 248 * PHP 8.5 compatibility 249 * bug fixes 250 246 251 = 2.63 = 247 252 * 2025-07-12 -
wp-external-links/trunk/wp-external-links.php
r3326614 r3491191 3 3 /** 4 4 * Plugin Name: WP External Links 5 * Version: 2.6 35 * Version: 2.64 6 6 * Plugin URI: https://getwplinks.com/ 7 7 * Description: Open external links in a new tab or window, control "nofollow" and "noopener", set font icon; SEO friendly. … … 11 11 * Text Domain: wp-external-links 12 12 13 * Copyright 2019 - 202 5WebFactory Ltd (email: [email protected])13 * Copyright 2019 - 2026 WebFactory Ltd (email: [email protected]) 14 14 * Copyright 2011 - 2019 @freelancephp 15 15
Note: See TracChangeset
for help on using the changeset viewer.