Version Description
- 16.11.2009 =
- Bugfix : Urlencode XML file path for sildeshow
Download this release
Release Info
Developer | alexrabe |
Plugin | NextGEN Gallery – WordPress Gallery Plugin |
Version | 1.4.3 |
Comparing to | |
See all releases |
Code changes from version 1.4.2 to 1.4.3
- changelog.txt +3 -0
- nggallery.php +2 -2
- nggfunctions.php +1 -1
- readme.txt +3 -0
- widgets/widgets.php +1 -1
changelog.txt
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
|
|
|
|
|
|
4 |
= V1.4.2 - 16.11.2009 =
|
5 |
* Changed : Load sildeshow XML not longer via relative path
|
6 |
* Bugfix : No imagebrowser in carousel mode
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
+
= V1.4.3 - 16.11.2009 =
|
5 |
+
* Bugfix : Urlencode XML file path for sildeshow
|
6 |
+
|
7 |
= V1.4.2 - 16.11.2009 =
|
8 |
* Changed : Load sildeshow XML not longer via relative path
|
9 |
* Bugfix : No imagebrowser in carousel mode
|
nggallery.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: NextGEN Gallery
|
|
4 |
Plugin URI: http://alexrabe.de/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the Web 2.0.
|
6 |
Author: Alex Rabe
|
7 |
-
Version: 1.4.
|
8 |
|
9 |
Author URI: http://alexrabe.de/
|
10 |
|
@@ -44,7 +44,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
44 |
if (!class_exists('nggLoader')) {
|
45 |
class nggLoader {
|
46 |
|
47 |
-
var $version = '1.4.
|
48 |
var $dbversion = '1.4.0';
|
49 |
var $minium_WP = '2.8';
|
50 |
var $minium_WPMU = '2.8';
|
4 |
Plugin URI: http://alexrabe.de/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the Web 2.0.
|
6 |
Author: Alex Rabe
|
7 |
+
Version: 1.4.3
|
8 |
|
9 |
Author URI: http://alexrabe.de/
|
10 |
|
44 |
if (!class_exists('nggLoader')) {
|
45 |
class nggLoader {
|
46 |
|
47 |
+
var $version = '1.4.3';
|
48 |
var $dbversion = '1.4.0';
|
49 |
var $minium_WP = '2.8';
|
50 |
var $minium_WPMU = '2.8';
|
nggfunctions.php
CHANGED
@@ -42,7 +42,7 @@ function nggShowSlideshow($galleryID, $width, $height) {
|
|
42 |
$swfobject->add_attributes('name', 'so' . $galleryID);
|
43 |
|
44 |
// adding the flash parameter
|
45 |
-
$swfobject->add_flashvars( 'file', get_option ('siteurl') . '/' . 'index.php?slideshow=true&gid=' . $galleryID );
|
46 |
$swfobject->add_flashvars( 'shuffle', $ngg_options['irShuffle'], 'true', 'bool');
|
47 |
$swfobject->add_flashvars( 'linkfromdisplay', $ngg_options['irLinkfromdisplay'], 'false', 'bool');
|
48 |
$swfobject->add_flashvars( 'shownavigation', $ngg_options['irShownavigation'], 'true', 'bool');
|
42 |
$swfobject->add_attributes('name', 'so' . $galleryID);
|
43 |
|
44 |
// adding the flash parameter
|
45 |
+
$swfobject->add_flashvars( 'file', urlencode (get_option ('siteurl') . '/' . 'index.php?slideshow=true&gid=' . $galleryID ) );
|
46 |
$swfobject->add_flashvars( 'shuffle', $ngg_options['irShuffle'], 'true', 'bool');
|
47 |
$swfobject->add_flashvars( 'linkfromdisplay', $ngg_options['irLinkfromdisplay'], 'false', 'bool');
|
48 |
$swfobject->add_flashvars( 'shownavigation', $ngg_options['irShownavigation'], 'true', 'bool');
|
readme.txt
CHANGED
@@ -140,6 +140,9 @@ To show the most recent added mages : **[recent max=x ]**
|
|
140 |
|
141 |
== Changelog ==
|
142 |
|
|
|
|
|
|
|
143 |
= V1.4.2 - 16.11.2009 =
|
144 |
* Changed : Load sildeshow XML not longer via relative path
|
145 |
* Bugfix : No imagebrowser in carousel mode
|
140 |
|
141 |
== Changelog ==
|
142 |
|
143 |
+
= V1.4.3 - 16.11.2009 =
|
144 |
+
* Bugfix : Urlencode XML file path for sildeshow
|
145 |
+
|
146 |
= V1.4.2 - 16.11.2009 =
|
147 |
* Changed : Load sildeshow XML not longer via relative path
|
148 |
* Bugfix : No imagebrowser in carousel mode
|
widgets/widgets.php
CHANGED
@@ -69,7 +69,7 @@ class nggSlideshowWidget extends WP_Widget {
|
|
69 |
$swfobject->add_attributes('styleclass', 'slideshow-widget');
|
70 |
|
71 |
// adding the flash parameter
|
72 |
-
$swfobject->add_flashvars( 'file', get_option ('siteurl') . '/' . 'index.php?slideshow=true&gid=' . $galleryID );
|
73 |
$swfobject->add_flashvars( 'shownavigation', 'false', 'true', 'bool');
|
74 |
$swfobject->add_flashvars( 'shuffle', $ngg_options['irShuffle'], 'true', 'bool');
|
75 |
$swfobject->add_flashvars( 'showicons', $ngg_options['irShowicons'], 'true', 'bool');
|
69 |
$swfobject->add_attributes('styleclass', 'slideshow-widget');
|
70 |
|
71 |
// adding the flash parameter
|
72 |
+
$swfobject->add_flashvars( 'file', urlencode( get_option ('siteurl') . '/' . 'index.php?slideshow=true&gid=' . $galleryID ) );
|
73 |
$swfobject->add_flashvars( 'shownavigation', 'false', 'true', 'bool');
|
74 |
$swfobject->add_flashvars( 'shuffle', $ngg_options['irShuffle'], 'true', 'bool');
|
75 |
$swfobject->add_flashvars( 'showicons', $ngg_options['irShowicons'], 'true', 'bool');
|