Version Description
- IMPROVE: Change admin-functions.php to includes/admin.php
- FIX: Cannot order slides of a gallery "No slides available"
Download this release
Release Info
Developer | contrid |
Plugin | Slideshow Gallery |
Version | 1.4.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4.4 to 1.4.4.1
- readme.txt +5 -1
- slideshow-gallery-ajax.php +1 -1
- slideshow-gallery-plugin.php +1 -1
- slideshow-gallery.php +2 -2
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://tribulant.com/
|
|
4 |
Tags: wordpress plugins, wordpress slideshow gallery, slides, slideshow, image gallery, images, gallery, featured content, content gallery, javascript, javascript slideshow, slideshow gallery
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.9.1
|
7 |
-
Stable tag: 1.4.4
|
8 |
|
9 |
Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website
|
10 |
|
@@ -122,6 +122,10 @@ There is an "Images Tester" utility under Slideshow > Configuration on the right
|
|
122 |
|
123 |
== Changelog ==
|
124 |
|
|
|
|
|
|
|
|
|
125 |
= 1.4.4 =
|
126 |
* FIX: Galleries not showing when saving a slide
|
127 |
|
4 |
Tags: wordpress plugins, wordpress slideshow gallery, slides, slideshow, image gallery, images, gallery, featured content, content gallery, javascript, javascript slideshow, slideshow gallery
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 3.9.1
|
7 |
+
Stable tag: 1.4.4.1
|
8 |
|
9 |
Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website
|
10 |
|
122 |
|
123 |
== Changelog ==
|
124 |
|
125 |
+
= 1.4.4.1 =
|
126 |
+
* IMPROVE: Change admin-functions.php to includes/admin.php
|
127 |
+
* FIX: Cannot order slides of a gallery "No slides available"
|
128 |
+
|
129 |
= 1.4.4 =
|
130 |
* FIX: Galleries not showing when saving a slide
|
131 |
|
slideshow-gallery-ajax.php
CHANGED
@@ -5,7 +5,7 @@ if (!defined('DS')) { define('DS', DIRECTORY_SEPARATOR); }
|
|
5 |
$root = __FILE__;
|
6 |
for ($i = 0; $i < 4; $i++) $root = dirname($root);
|
7 |
require_once($root . DS . 'wp-config.php');
|
8 |
-
require_once(ABSPATH . 'wp-admin' . DS . 'admin
|
9 |
|
10 |
class GalleryAjax extends GalleryPlugin {
|
11 |
|
5 |
$root = __FILE__;
|
6 |
for ($i = 0; $i < 4; $i++) $root = dirname($root);
|
7 |
require_once($root . DS . 'wp-config.php');
|
8 |
+
require_once(ABSPATH . 'wp-admin' . DS . 'includes' . DS . 'admin.php');
|
9 |
|
10 |
class GalleryAjax extends GalleryPlugin {
|
11 |
|
slideshow-gallery-plugin.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
class GalleryPlugin {
|
4 |
|
5 |
-
var $version = '1.4.4';
|
6 |
var $plugin_name;
|
7 |
var $plugin_base;
|
8 |
var $pre = 'Gallery';
|
2 |
|
3 |
class GalleryPlugin {
|
4 |
|
5 |
+
var $version = '1.4.4.1';
|
6 |
var $plugin_name;
|
7 |
var $plugin_base;
|
8 |
var $pre = 'Gallery';
|
slideshow-gallery.php
CHANGED
@@ -6,7 +6,7 @@ Plugin URI: http://wpgallery.tribulant.net
|
|
6 |
Author: Tribulant Software
|
7 |
Author URI: http://tribulant.com
|
8 |
Description: Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website. The slideshow is flexible and all aspects can easily be configured. Embedding or hardcoding the slideshow gallery is a breeze. To embed into a post/page, simply insert <code>[tribulant_slideshow]</code> into its content with an optional <code>post_id</code> parameter. To hardcode into any PHP file of your WordPress theme, simply use <code><?php if (function_exists('slideshow')) { slideshow($output = true, $post_id = false, $gallery_id = false, $params = array()); } ?></code>.
|
9 |
-
Version: 1.4.4
|
10 |
License: GNU General Public License v2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Tags: slideshow gallery, slideshow, gallery, slider, jquery, bfithumb, galleries, photos, images
|
@@ -351,7 +351,7 @@ if (!class_exists('Gallery')) {
|
|
351 |
$gsquery = "SELECT gs.slide_id FROM `" . $this -> GallerySlides -> table . "` gs WHERE `gallery_id` = '" . $gallery -> id . "' ORDER BY gs.order ASC";
|
352 |
|
353 |
$query_hash = md5($gsquery);
|
354 |
-
if ($oc_gs =
|
355 |
$gs = $oc_gs;
|
356 |
} else {
|
357 |
$gs = $wpdb -> get_results($gsquery);
|
6 |
Author: Tribulant Software
|
7 |
Author URI: http://tribulant.com
|
8 |
Description: Feature content in a JavaScript powered slideshow gallery showcase on your WordPress website. The slideshow is flexible and all aspects can easily be configured. Embedding or hardcoding the slideshow gallery is a breeze. To embed into a post/page, simply insert <code>[tribulant_slideshow]</code> into its content with an optional <code>post_id</code> parameter. To hardcode into any PHP file of your WordPress theme, simply use <code><?php if (function_exists('slideshow')) { slideshow($output = true, $post_id = false, $gallery_id = false, $params = array()); } ?></code>.
|
9 |
+
Version: 1.4.4.1
|
10 |
License: GNU General Public License v2 or later
|
11 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
12 |
Tags: slideshow gallery, slideshow, gallery, slider, jquery, bfithumb, galleries, photos, images
|
351 |
$gsquery = "SELECT gs.slide_id FROM `" . $this -> GallerySlides -> table . "` gs WHERE `gallery_id` = '" . $gallery -> id . "' ORDER BY gs.order ASC";
|
352 |
|
353 |
$query_hash = md5($gsquery);
|
354 |
+
if ($oc_gs = wp_cache_get($query_hash, 'slideshowgallery')) {
|
355 |
$gs = $oc_gs;
|
356 |
} else {
|
357 |
$gs = $wpdb -> get_results($gsquery);
|