Version Description
- Fix a bug that could cause new installs to constantly try to update the storage format.
Download this release
Release Info
Developer | markjaquith |
Plugin | Page Links To |
Version | 3.3.5 |
Comparing to | |
See all releases |
Code changes from version 3.3.4 to 3.3.5
- classes/plugin.php +5 -1
- page-links-to.php +1 -1
- readme.txt +4 -1
classes/plugin.php
CHANGED
@@ -31,7 +31,7 @@ class CWS_PageLinksTo {
|
|
31 |
const DISMISSED_NOTICES = 'page_links_dismissed_options';
|
32 |
const MESSAGE_ID = 4;
|
33 |
const NEWSLETTER_URL = 'https://pages.convertkit.com/8eb23c1339/1ce4614706';
|
34 |
-
const CSS_JS_VERSION = '3.3.
|
35 |
|
36 |
/**
|
37 |
* Whether to replace WP links with their specified URLs.
|
@@ -302,6 +302,10 @@ class CWS_PageLinksTo {
|
|
302 |
$total_affected += $affected;
|
303 |
}
|
304 |
}
|
|
|
|
|
|
|
|
|
305 |
// Only flush the cache if something changed.
|
306 |
if ( $total_affected > 0 ) {
|
307 |
wp_cache_flush();
|
31 |
const DISMISSED_NOTICES = 'page_links_dismissed_options';
|
32 |
const MESSAGE_ID = 4;
|
33 |
const NEWSLETTER_URL = 'https://pages.convertkit.com/8eb23c1339/1ce4614706';
|
34 |
+
const CSS_JS_VERSION = '3.3.5';
|
35 |
|
36 |
/**
|
37 |
* Whether to replace WP links with their specified URLs.
|
302 |
$total_affected += $affected;
|
303 |
}
|
304 |
}
|
305 |
+
|
306 |
+
// Update the database version.
|
307 |
+
update_option( self::VERSION_KEY, 3 );
|
308 |
+
|
309 |
// Only flush the cache if something changed.
|
310 |
if ( $total_affected > 0 ) {
|
311 |
wp_cache_flush();
|
page-links-to.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
* Plugin Name: Page Links To
|
8 |
* Plugin URI: http://txfx.net/wordpress-plugins/page-links-to/
|
9 |
* Description: Allows you to point WordPress pages or posts to a URL of your choosing. Good for setting up navigational links to non-WP sections of your site or to off-site resources.
|
10 |
-
* Version: 3.3.
|
11 |
* Author: Mark Jaquith
|
12 |
* Author URI: https://coveredweb.com/
|
13 |
* Text Domain: page-links-to
|
7 |
* Plugin Name: Page Links To
|
8 |
* Plugin URI: http://txfx.net/wordpress-plugins/page-links-to/
|
9 |
* Description: Allows you to point WordPress pages or posts to a URL of your choosing. Good for setting up navigational links to non-WP sections of your site or to off-site resources.
|
10 |
+
* Version: 3.3.5
|
11 |
* Author: Mark Jaquith
|
12 |
* Author URI: https://coveredweb.com/
|
13 |
* Text Domain: page-links-to
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://txfx.net/wordpress-plugins/donate
|
|
5 |
Tags: page, redirect, link, external link, repoint
|
6 |
Requires at least: 4.8
|
7 |
Tested up to: 5.4
|
8 |
-
Stable tag: 3.3.
|
9 |
|
10 |
Lets you make a WordPress page (or port or other content type) link to a URL of your choosing (on your site, or on another site), instead of its normal WordPress URL.
|
11 |
|
@@ -77,6 +77,9 @@ You can contribute (or report bugs) on [Github](https://github.com/markjaquith/p
|
|
77 |
|
78 |
== Changelog ==
|
79 |
|
|
|
|
|
|
|
80 |
= 3.3.4 =
|
81 |
* Bug fixes
|
82 |
|
5 |
Tags: page, redirect, link, external link, repoint
|
6 |
Requires at least: 4.8
|
7 |
Tested up to: 5.4
|
8 |
+
Stable tag: 3.3.5
|
9 |
|
10 |
Lets you make a WordPress page (or port or other content type) link to a URL of your choosing (on your site, or on another site), instead of its normal WordPress URL.
|
11 |
|
77 |
|
78 |
== Changelog ==
|
79 |
|
80 |
+
= 3.3.5 =
|
81 |
+
* Fix a bug that could cause new installs to constantly try to update the storage format.
|
82 |
+
|
83 |
= 3.3.4 =
|
84 |
* Bug fixes
|
85 |
|