Version Description
- 08.18.2014 =
- Fixed: Missing class.frame_communication_option_handerl.php error
Download this release
Release Info
Developer | photocrati |
Plugin | NextGEN Gallery – WordPress Gallery Plugin |
Version | 2.0.66.27 |
Comparing to | |
See all releases |
Code changes from version 2.0.66.26 to 2.0.66.27
changelog.txt
CHANGED
@@ -1,6 +1,9 @@
|
|
1 |
NextGEN Gallery
|
2 |
by Photocrati Media
|
3 |
|
|
|
|
|
|
|
4 |
= V2.0.66.26 - 08.18.2014 =
|
5 |
* NEW: Added fault tolerance to bulk action AJAX requests
|
6 |
* Changed: Moved some settings from DB to in-memory
|
1 |
NextGEN Gallery
|
2 |
by Photocrati Media
|
3 |
|
4 |
+
= V2.0.66.27 - 08.18.2014 =
|
5 |
+
* Fixed: Missing class.frame_communication_option_handerl.php error
|
6 |
+
|
7 |
= V2.0.66.26 - 08.18.2014 =
|
8 |
* NEW: Added fault tolerance to bulk action AJAX requests
|
9 |
* Changed: Moved some settings from DB to in-memory
|
nggallery.php
CHANGED
@@ -4,7 +4,7 @@ if(preg_match('#' . basename(__FILE__) . '#', $_SERVER['PHP_SELF'])) { die('You
|
|
4 |
/**
|
5 |
* Plugin Name: NextGEN Gallery by Photocrati
|
6 |
* Description: The most popular gallery plugin for WordPress and one of the most popular plugins of all time with over 9 million downloads.
|
7 |
-
* Version: 2.0.66.
|
8 |
* Author: Photocrati Media
|
9 |
* Plugin URI: http://www.nextgen-gallery.com
|
10 |
* Author URI: http://www.photocrati.com
|
@@ -431,7 +431,7 @@ class C_NextGEN_Bootstrap
|
|
431 |
define('NGG_PRODUCT_URL', path_join(str_replace("\\", '/', NGG_PLUGIN_URL), 'products'));
|
432 |
define('NGG_MODULE_URL', path_join(str_replace("\\", '/', NGG_PRODUCT_URL), 'photocrati_nextgen/modules'));
|
433 |
define('NGG_PLUGIN_STARTED_AT', microtime());
|
434 |
-
define('NGG_PLUGIN_VERSION', '2.0.66.
|
435 |
|
436 |
if (!defined('NGG_HIDE_STRICT_ERRORS')) {
|
437 |
define('NGG_HIDE_STRICT_ERRORS', TRUE);
|
4 |
/**
|
5 |
* Plugin Name: NextGEN Gallery by Photocrati
|
6 |
* Description: The most popular gallery plugin for WordPress and one of the most popular plugins of all time with over 9 million downloads.
|
7 |
+
* Version: 2.0.66.27
|
8 |
* Author: Photocrati Media
|
9 |
* Plugin URI: http://www.nextgen-gallery.com
|
10 |
* Author URI: http://www.photocrati.com
|
431 |
define('NGG_PRODUCT_URL', path_join(str_replace("\\", '/', NGG_PLUGIN_URL), 'products'));
|
432 |
define('NGG_MODULE_URL', path_join(str_replace("\\", '/', NGG_PRODUCT_URL), 'photocrati_nextgen/modules'));
|
433 |
define('NGG_PLUGIN_STARTED_AT', microtime());
|
434 |
+
define('NGG_PLUGIN_VERSION', '2.0.66.27');
|
435 |
|
436 |
if (!defined('NGG_HIDE_STRICT_ERRORS')) {
|
437 |
define('NGG_HIDE_STRICT_ERRORS', TRUE);
|
products/photocrati_nextgen/modules/frame_communication/class.frame_communication_option_handler.php
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class C_Frame_Communication_Option_Handler
|
4 |
+
{
|
5 |
+
function get($key, $default='X-Frame-Events')
|
6 |
+
{
|
7 |
+
return 'X-Frame-Events';
|
8 |
+
}
|
9 |
+
}
|
readme.txt
CHANGED
@@ -199,6 +199,9 @@ For more information, feel free to visit the official website for the NextGEN Ga
|
|
199 |
|
200 |
== Changelog ==
|
201 |
|
|
|
|
|
|
|
202 |
= V2.0.66.26 - 08.18.2014 =
|
203 |
* NEW: Added fault tolerance to bulk action AJAX requests
|
204 |
* Changed: Moved some settings from DB to in-memory
|
199 |
|
200 |
== Changelog ==
|
201 |
|
202 |
+
= V2.0.66.27 - 08.18.2014 =
|
203 |
+
* Fixed: Missing class.frame_communication_option_handerl.php error
|
204 |
+
|
205 |
= V2.0.66.26 - 08.18.2014 =
|
206 |
* NEW: Added fault tolerance to bulk action AJAX requests
|
207 |
* Changed: Moved some settings from DB to in-memory
|