Version Description
- Fix: Embedded Facebook urls no longer processed by Auto Convert text functionality
Download this release
Release Info
Developer | Mike_Koepke |
Plugin | External Links |
Version | 6.8.1 |
Comparing to | |
See all releases |
Code changes from version 6.8 to 6.8.1
- readme.txt +5 -1
- sem-autolink-uri.php +1 -1
- sem-external-links.php +2 -2
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: Denis-de-Bernardy, Mike_Koepke
|
|
3 |
Donate link: https://www.semiologic.com/donate/
|
4 |
Tags: external-links, nofollow, link-target, link-icon, semiologic
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 4.7.
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
@@ -59,6 +59,10 @@ The plugin supports a non-started rel="follow" attribute on links to override th
|
|
59 |
|
60 |
== Change Log ==
|
61 |
|
|
|
|
|
|
|
|
|
62 |
= 6.8 =
|
63 |
|
64 |
- Change: Handle links that space multiple lines (props archon810)
|
3 |
Donate link: https://www.semiologic.com/donate/
|
4 |
Tags: external-links, nofollow, link-target, link-icon, semiologic
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 4.7.4
|
7 |
License: GPLv2 or later
|
8 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
9 |
|
59 |
|
60 |
== Change Log ==
|
61 |
|
62 |
+
= 6.8.1 =
|
63 |
+
|
64 |
+
- Fix: Embedded Facebook urls no longer processed by Auto Convert text functionality
|
65 |
+
|
66 |
= 6.8 =
|
67 |
|
68 |
- Change: Handle links that space multiple lines (props archon810)
|
sem-autolink-uri.php
CHANGED
@@ -191,7 +191,7 @@ class sem_autolink_uri {
|
|
191 |
<a .*?>.*?<\/a>
|
192 |
/isx",
|
193 |
'tags' => "/
|
194 |
-
<[^<>]+?(?:src|href|codebase|archive|usemap|data|data-.*|itemtype|xmlns|value|action|background|placeholder|onclick)=[^<>]+?>
|
195 |
/ix",
|
196 |
) as $regex ) {
|
197 |
$t = preg_replace_callback($regex, array($this, 'escape_callback'), $text);
|
191 |
<a .*?>.*?<\/a>
|
192 |
/isx",
|
193 |
'tags' => "/
|
194 |
+
<[^<>]+?(?:src|href|codebase|archive|usemap|data|data-.*|itemtype|xmlns|value|action|cite|background|placeholder|onclick)=[^<>]+?>
|
195 |
/ix",
|
196 |
) as $regex ) {
|
197 |
$t = preg_replace_callback($regex, array($this, 'escape_callback'), $text);
|
sem-external-links.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: External Links
|
4 |
Plugin URI: http://www.semiologic.com/software/external-links/
|
5 |
Description: Marks outbound links as such, with various effects that are configurable under <a href="options-general.php?page=external-links">Settings / External Links</a>.
|
6 |
-
Version: 6.8
|
7 |
Author: Denis de Bernardy & Mike Koepke
|
8 |
Author URI: https://www.semiologic.com
|
9 |
Text Domain: sem-external-links
|
@@ -19,7 +19,7 @@ This software is copyright Denis de Bernardy & Mike Koepke, and is distributed u
|
|
19 |
|
20 |
**/
|
21 |
|
22 |
-
define('sem_external_links_version', '6.8');
|
23 |
|
24 |
/**
|
25 |
* external_links
|
3 |
Plugin Name: External Links
|
4 |
Plugin URI: http://www.semiologic.com/software/external-links/
|
5 |
Description: Marks outbound links as such, with various effects that are configurable under <a href="options-general.php?page=external-links">Settings / External Links</a>.
|
6 |
+
Version: 6.8.1
|
7 |
Author: Denis de Bernardy & Mike Koepke
|
8 |
Author URI: https://www.semiologic.com
|
9 |
Text Domain: sem-external-links
|
19 |
|
20 |
**/
|
21 |
|
22 |
+
define('sem_external_links_version', '6.8.1');
|
23 |
|
24 |
/**
|
25 |
* external_links
|