Version Description
Download this release
Release Info
Developer | alexrabe |
Plugin | NextGEN Gallery – WordPress Gallery Plugin |
Version | 1.3.3 |
Comparing to | |
See all releases |
Code changes from version 1.3.2 to 1.3.3
- changelog.txt +4 -0
- nggallery.php +5 -5
changelog.txt
CHANGED
@@ -1,6 +1,10 @@
|
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
|
|
|
|
|
|
|
|
4 |
V1.3.2 - 10.06.2009
|
5 |
- Changed : Resize maximum to 1280 x 1280 with nggshow (THX to onezero)
|
6 |
- Bugfix : Bugfix for Multifile upload
|
1 |
NextGEN Gallery
|
2 |
by Alex Rabe & NextGEN DEV Team
|
3 |
|
4 |
+
v1.3.3 - 11.06.2009
|
5 |
+
- Changed : Load Thickbox images via wp_footer()
|
6 |
+
- Bugfix : Widget setting couldnot be saved
|
7 |
+
|
8 |
V1.3.2 - 10.06.2009
|
9 |
- Changed : Resize maximum to 1280 x 1280 with nggshow (THX to onezero)
|
10 |
- Bugfix : Bugfix for Multifile upload
|
nggallery.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: NextGEN Gallery
|
|
4 |
Plugin URI: http://alexrabe.boelinger.com/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the Web 2.0.
|
6 |
Author: Alex Rabe
|
7 |
-
Version: 1.3.
|
8 |
|
9 |
Author URI: http://alexrabe.boelinger.com/
|
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.3.
|
48 |
var $dbversion = '1.3.1';
|
49 |
var $minium_WP = '2.7';
|
50 |
var $minium_WPMU = '2.7';
|
@@ -229,7 +229,8 @@ class nggLoader {
|
|
229 |
require_once (dirname (__FILE__) . '/lib/core.php'); // 94.840
|
230 |
require_once (dirname (__FILE__) . '/lib/ngg-db.php'); // 132.400
|
231 |
require_once (dirname (__FILE__) . '/lib/image.php'); // 59.424
|
232 |
-
|
|
|
233 |
// We didn't need all stuff during a AJAX operation
|
234 |
if ( defined('DOING_AJAX') )
|
235 |
require_once (dirname (__FILE__) . '/admin/ajax.php');
|
@@ -237,7 +238,6 @@ class nggLoader {
|
|
237 |
require_once (dirname (__FILE__) . '/lib/meta.php'); // 131.856
|
238 |
require_once (dirname (__FILE__) . '/lib/tags.php'); // 117.136
|
239 |
require_once (dirname (__FILE__) . '/lib/media-rss.php'); // 82.768
|
240 |
-
require_once (dirname (__FILE__) . '/widgets/widgets.php'); // 298.792
|
241 |
require_once (dirname (__FILE__) . '/lib/rewrite.php'); // 71.936
|
242 |
include_once (dirname (__FILE__) . '/admin/tinymce/tinymce.php'); // 22.408
|
243 |
|
@@ -267,7 +267,7 @@ class nggLoader {
|
|
267 |
if ($this->options['thumbEffect'] == 'thickbox') {
|
268 |
wp_enqueue_script( 'thickbox' );
|
269 |
// Load the thickbox images after all other scripts
|
270 |
-
add_action( '
|
271 |
|
272 |
}
|
273 |
|
4 |
Plugin URI: http://alexrabe.boelinger.com/?page_id=80
|
5 |
Description: A NextGENeration Photo gallery for the Web 2.0.
|
6 |
Author: Alex Rabe
|
7 |
+
Version: 1.3.3
|
8 |
|
9 |
Author URI: http://alexrabe.boelinger.com/
|
10 |
|
44 |
if (!class_exists('nggLoader')) {
|
45 |
class nggLoader {
|
46 |
|
47 |
+
var $version = '1.3.3';
|
48 |
var $dbversion = '1.3.1';
|
49 |
var $minium_WP = '2.7';
|
50 |
var $minium_WPMU = '2.7';
|
229 |
require_once (dirname (__FILE__) . '/lib/core.php'); // 94.840
|
230 |
require_once (dirname (__FILE__) . '/lib/ngg-db.php'); // 132.400
|
231 |
require_once (dirname (__FILE__) . '/lib/image.php'); // 59.424
|
232 |
+
require_once (dirname (__FILE__) . '/widgets/widgets.php'); // 298.792
|
233 |
+
|
234 |
// We didn't need all stuff during a AJAX operation
|
235 |
if ( defined('DOING_AJAX') )
|
236 |
require_once (dirname (__FILE__) . '/admin/ajax.php');
|
238 |
require_once (dirname (__FILE__) . '/lib/meta.php'); // 131.856
|
239 |
require_once (dirname (__FILE__) . '/lib/tags.php'); // 117.136
|
240 |
require_once (dirname (__FILE__) . '/lib/media-rss.php'); // 82.768
|
|
|
241 |
require_once (dirname (__FILE__) . '/lib/rewrite.php'); // 71.936
|
242 |
include_once (dirname (__FILE__) . '/admin/tinymce/tinymce.php'); // 22.408
|
243 |
|
267 |
if ($this->options['thumbEffect'] == 'thickbox') {
|
268 |
wp_enqueue_script( 'thickbox' );
|
269 |
// Load the thickbox images after all other scripts
|
270 |
+
add_action( 'wp_footer', array(&$this, 'load_thickbox_images'), 11 );
|
271 |
|
272 |
}
|
273 |
|