Version Description
- Fixed a possible error with an undefined "preserve_click" variable.
Download this release
Release Info
Developer | fourlightsweb |
Plugin | WP Gallery Custom Links |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.1
- readme.txt +7 -1
- wp-gallery-custom-links.php +2 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.fourlightsweb.com/wordpress-plugins/wp-gallery-custom-li
|
|
4 |
Tags: gallery links, gallery link, gallery
|
5 |
Requires at least: 3.3.2
|
6 |
Tested up to: 3.5
|
7 |
-
Stable tag: 1.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -65,6 +65,9 @@ that function outside of the WordPress [gallery] shortcode.
|
|
65 |
|
66 |
== Changelog ==
|
67 |
|
|
|
|
|
|
|
68 |
= 1.5.0 =
|
69 |
* By popular demand, added support for Jetpack tiled galleries (and its use
|
70 |
of the Photon CDN for URLs).
|
@@ -121,6 +124,9 @@ directly attached to the post.
|
|
121 |
|
122 |
== Upgrade Notice ==
|
123 |
|
|
|
|
|
|
|
124 |
= 1.5.0 =
|
125 |
* By popular demand, added support for Jetpack tiled galleries (and its use
|
126 |
of the Photon CDN for URLs).
|
4 |
Tags: gallery links, gallery link, gallery
|
5 |
Requires at least: 3.3.2
|
6 |
Tested up to: 3.5
|
7 |
+
Stable tag: 1.5.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
65 |
|
66 |
== Changelog ==
|
67 |
|
68 |
+
= 1.5.1 =
|
69 |
+
* Fixed a possible error with an undefined "preserve_click" variable.
|
70 |
+
|
71 |
= 1.5.0 =
|
72 |
* By popular demand, added support for Jetpack tiled galleries (and its use
|
73 |
of the Photon CDN for URLs).
|
124 |
|
125 |
== Upgrade Notice ==
|
126 |
|
127 |
+
= 1.5.1 =
|
128 |
+
* Fixed a possible error with an undefined "preserve_click" variable.
|
129 |
+
|
130 |
= 1.5.0 =
|
131 |
* By popular demand, added support for Jetpack tiled galleries (and its use
|
132 |
of the Photon CDN for URLs).
|
wp-gallery-custom-links.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: WP Gallery Custom Links
|
4 |
Plugin URI: http://www.fourlightsweb.com/wordpress-plugins/wp-gallery-custom-links/
|
5 |
Description: Specifiy custom links for WordPress gallery images (instead of attachment or file only).
|
6 |
-
Version: 1.5.
|
7 |
Author: Four Lights Web Development
|
8 |
Author URI: http://www.fourlightsweb.com
|
9 |
License: GPL2
|
@@ -162,6 +162,7 @@ class WPGalleryCustomLinks {
|
|
162 |
foreach ( $attachment_ids as $attachment_id ) {
|
163 |
$link = '';
|
164 |
$target = '';
|
|
|
165 |
$attachment_id = intval( $attachment_id );
|
166 |
|
167 |
// See if we have a custom url for this attachment image
|
3 |
Plugin Name: WP Gallery Custom Links
|
4 |
Plugin URI: http://www.fourlightsweb.com/wordpress-plugins/wp-gallery-custom-links/
|
5 |
Description: Specifiy custom links for WordPress gallery images (instead of attachment or file only).
|
6 |
+
Version: 1.5.1
|
7 |
Author: Four Lights Web Development
|
8 |
Author URI: http://www.fourlightsweb.com
|
9 |
License: GPL2
|
162 |
foreach ( $attachment_ids as $attachment_id ) {
|
163 |
$link = '';
|
164 |
$target = '';
|
165 |
+
$preserve_click = '';
|
166 |
$attachment_id = intval( $attachment_id );
|
167 |
|
168 |
// See if we have a custom url for this attachment image
|