WP Photo Album Plus - Version 8.0.04.007

Version Description

= 8.0.04 =

  • This version addresses various minor bug fixes and feature requests.
Download this release

Release Info

Developer opajaap
Plugin Icon wp plugin WP Photo Album Plus
Version 8.0.04.007
Comparing to
See all releases

Code changes from version 8.0.04.006 to 8.0.04.007

changelog.txt CHANGED
@@ -13,6 +13,7 @@ WP Photo Album Plus Changelog
13
  * Mailing unsubscribe links failed. Fixed.
14
  * Improved algorithm to clear non-wppa caches.
15
  * Corrected and extended helptext in titles (balloons) on the Album Admin -> Edit Album Information page.
 
16
 
17
  = 8.0.03 =
18
 
13
  * Mailing unsubscribe links failed. Fixed.
14
  * Improved algorithm to clear non-wppa caches.
15
  * Corrected and extended helptext in titles (balloons) on the Album Admin -> Edit Album Information page.
16
+ * Hotfix 8.0.04.007: Current values of input and selectionoxis did not show up on the settings page. Fixed.
17
 
18
  = 8.0.03 =
19
 
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: photo, album, slideshow, video, audio, lightbox, iptc, exif, cloudinary, f
5
  Requires at least: 3.9
6
  Tested up to: 5.8
7
  Requires PHP: 5.5
8
- Stable tag: 8.0.03.006
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
5
  Requires at least: 3.9
6
  Tested up to: 5.8
7
  Requires PHP: 5.5
8
+ Stable tag: 8.0.04.006
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
wppa-setting-functions.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * manage all options
6
- * Version 8.0.04.006
7
  *
8
  */
9
 
@@ -13,7 +13,7 @@ global $wppa_opt;
13
  $slug = substr( $xslug, 5 );
14
  $tit = __( 'Slug =', 'wp-photo-album-plus') . ' ' . $xslug;
15
  $title = wppa_switch( 'enable_shortcode_wppa_set' ) ? esc_attr( $tit ) : '';
16
- $val = isset( $wppa_opt[$slug] ) ? $wppa_opt[$slug] : get_option( $slug );
17
  $html = '
18
  <input
19
  id="' . $slug . '"
@@ -229,7 +229,7 @@ global $wppa_opt;
229
  if ($class != '') $html .= ' class="'.$class.'"';
230
  $html .= '>';
231
 
232
- $val = isset( $wppa_opt[$slug] ) ? $wppa_opt[$slug] : get_option( $slug );
233
  $idx = 0;
234
  $cnt = count($opts);
235
  while ($idx < $cnt) {
@@ -274,7 +274,7 @@ global $wppa_opt;
274
  ' class="'.$class.'"' .
275
  ' >';
276
 
277
- $val = wppa_opt( $xslug );
278
  $idx = 0;
279
  $cnt = count( $opts );
280
 
3
  * Package: wp-photo-album-plus
4
  *
5
  * manage all options
6
+ * Version 8.0.04.007
7
  *
8
  */
9
 
13
  $slug = substr( $xslug, 5 );
14
  $tit = __( 'Slug =', 'wp-photo-album-plus') . ' ' . $xslug;
15
  $title = wppa_switch( 'enable_shortcode_wppa_set' ) ? esc_attr( $tit ) : '';
16
+ $val = wppa_get_option( $xslug );
17
  $html = '
18
  <input
19
  id="' . $slug . '"
229
  if ($class != '') $html .= ' class="'.$class.'"';
230
  $html .= '>';
231
 
232
+ $val = wppa_get_option( $xslug );
233
  $idx = 0;
234
  $cnt = count($opts);
235
  while ($idx < $cnt) {
274
  ' class="'.$class.'"' .
275
  ' >';
276
 
277
+ $val = wppa_opt( $slug );
278
  $idx = 0;
279
  $cnt = count( $opts );
280
 
wppa-settings-autosave.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * manage all options
6
- * Version 8.0.04.006
7
  *
8
  */
9
 
@@ -1696,7 +1696,7 @@ global $wppa_subtab_names;
1696
  $help .= '<br />'.__('Changing the coverphoto size may result in all thumbnails being regenerated. this may take a while.', 'wp-photo-album-plus');
1697
  $slug = 'wppa_smallsize';
1698
  $html = wppa_input($slug, '40px', '', __('pixels', 'wp-photo-album-plus'));
1699
- wppa_setting_new($slug, '6', $name, $desc, $html, $help, ! wppa_switch( 'wppa_coverphoto_responsive' ));
1700
 
1701
  $name = __('Coverphoto size', 'wp-photo-album-plus');
1702
  $desc = __('The size of the coverphoto.', 'wp-photo-album-plus');
@@ -1704,7 +1704,7 @@ global $wppa_subtab_names;
1704
  $help .= '<br />'.__('Changing the coverphoto size may result in all thumbnails being regenerated. this may take a while.', 'wp-photo-album-plus');
1705
  $slug = 'wppa_smallsize_percentage';
1706
  $html = wppa_input($slug, '40px', '', __('percent', 'wp-photo-album-plus'));
1707
- wppa_setting_new($slug, '7', $name, $desc, $html, $help, wppa_switch( 'wppa_coverphoto_responsive' ));
1708
 
1709
  $name = __('Coverphoto size multi', 'wp-photo-album-plus');
1710
  $desc = __('The size of coverphotos if more than one.', 'wp-photo-album-plus');
@@ -1712,7 +1712,7 @@ global $wppa_subtab_names;
1712
  $help .= '<br />'.__('Changing the coverphoto size may result in all thumbnails being regenerated. this may take a while.', 'wp-photo-album-plus');
1713
  $slug = 'wppa_smallsize_multi';
1714
  $html = wppa_input($slug, '40px', '', __('pixels', 'wp-photo-album-plus'));
1715
- wppa_setting_new($slug, '8', $name, $desc, $html, $help, ! wppa_switch( 'wppa_coverphoto_responsive' ));
1716
 
1717
  $name = __('Coverphoto size multi', 'wp-photo-album-plus');
1718
  $desc = __('The size of coverphotos if more than one.', 'wp-photo-album-plus');
@@ -1720,7 +1720,7 @@ global $wppa_subtab_names;
1720
  $help .= '<br />'.__('Changing the coverphoto size may result in all thumbnails being regenerated. this may take a while.', 'wp-photo-album-plus');
1721
  $slug = 'wppa_smallsize_multi_percentage';
1722
  $html = wppa_input($slug, '40px', '', __('percent', 'wp-photo-album-plus'));
1723
- wppa_setting_new($slug, '9', $name, $desc, $html, $help, wppa_switch( 'wppa_coverphoto_responsive' ));
1724
 
1725
  $name = __('Size is height', 'wp-photo-album-plus');
1726
  $desc = __('The size of the coverphoto is the height of it.', 'wp-photo-album-plus');
@@ -3189,7 +3189,7 @@ global $wppa_subtab_names;
3189
  $help = __('In order to attempt to fit on one line, the numbers will be replaced by dots - except the current - when there are more than this number of photos in a slideshow.', 'wp-photo-album-plus');
3190
  $slug = 'wppa_numbar_max';
3191
  $html = wppa_input($slug, '40px', '', __('numbers', 'wp-photo-album-plus'));
3192
- wppa_setting_new($slug, '28', $name, $desc, $html, $help, wppa_opt( 'show_slideshownumbar' ) );
3193
 
3194
  $name = __('Numbar', 'wp-photo-album-plus');
3195
  $desc = __('Number bar box background.', 'wp-photo-album-plus');
3
  * Package: wp-photo-album-plus
4
  *
5
  * manage all options
6
+ * Version 8.0.04.007
7
  *
8
  */
9
 
1696
  $help .= '<br />'.__('Changing the coverphoto size may result in all thumbnails being regenerated. this may take a while.', 'wp-photo-album-plus');
1697
  $slug = 'wppa_smallsize';
1698
  $html = wppa_input($slug, '40px', '', __('pixels', 'wp-photo-album-plus'));
1699
+ wppa_setting_new($slug, '6', $name, $desc, $html, $help, ! wppa_switch( 'coverphoto_responsive' ));
1700
 
1701
  $name = __('Coverphoto size', 'wp-photo-album-plus');
1702
  $desc = __('The size of the coverphoto.', 'wp-photo-album-plus');
1704
  $help .= '<br />'.__('Changing the coverphoto size may result in all thumbnails being regenerated. this may take a while.', 'wp-photo-album-plus');
1705
  $slug = 'wppa_smallsize_percentage';
1706
  $html = wppa_input($slug, '40px', '', __('percent', 'wp-photo-album-plus'));
1707
+ wppa_setting_new($slug, '7', $name, $desc, $html, $help, wppa_switch( 'coverphoto_responsive' ));
1708
 
1709
  $name = __('Coverphoto size multi', 'wp-photo-album-plus');
1710
  $desc = __('The size of coverphotos if more than one.', 'wp-photo-album-plus');
1712
  $help .= '<br />'.__('Changing the coverphoto size may result in all thumbnails being regenerated. this may take a while.', 'wp-photo-album-plus');
1713
  $slug = 'wppa_smallsize_multi';
1714
  $html = wppa_input($slug, '40px', '', __('pixels', 'wp-photo-album-plus'));
1715
+ wppa_setting_new($slug, '8', $name, $desc, $html, $help, ! wppa_switch( 'coverphoto_responsive' ));
1716
 
1717
  $name = __('Coverphoto size multi', 'wp-photo-album-plus');
1718
  $desc = __('The size of coverphotos if more than one.', 'wp-photo-album-plus');
1720
  $help .= '<br />'.__('Changing the coverphoto size may result in all thumbnails being regenerated. this may take a while.', 'wp-photo-album-plus');
1721
  $slug = 'wppa_smallsize_multi_percentage';
1722
  $html = wppa_input($slug, '40px', '', __('percent', 'wp-photo-album-plus'));
1723
+ wppa_setting_new($slug, '9', $name, $desc, $html, $help, wppa_switch( 'coverphoto_responsive' ));
1724
 
1725
  $name = __('Size is height', 'wp-photo-album-plus');
1726
  $desc = __('The size of the coverphoto is the height of it.', 'wp-photo-album-plus');
3189
  $help = __('In order to attempt to fit on one line, the numbers will be replaced by dots - except the current - when there are more than this number of photos in a slideshow.', 'wp-photo-album-plus');
3190
  $slug = 'wppa_numbar_max';
3191
  $html = wppa_input($slug, '40px', '', __('numbers', 'wp-photo-album-plus'));
3192
+ wppa_setting_new($slug, '28', $name, $desc, $html, $help, wppa_switch( 'show_slideshownumbar' ) );
3193
 
3194
  $name = __('Numbar', 'wp-photo-album-plus');
3195
  $desc = __('Number bar box background.', 'wp-photo-album-plus');
wppa.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  * Plugin Name: WP Photo Album Plus
4
  * Description: Easily manage and display your photo albums and slideshows within your WordPress site.
5
- * Version: 8.0.04.006
6
  * Author: J.N. Breetvelt a.k.a. OpaJaap
7
  * Author URI: http://wppa.opajaap.nl/
8
  * Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
@@ -24,7 +24,7 @@ global $wp_version;
24
 
25
  /* WPPA GLOBALS */
26
  global $wppa_api_version;
27
- $wppa_api_version = '8.0.04.006'; // WPPA software version
28
  global $wppa_revno;
29
  $wppa_revno = str_replace( '.', '', $wppa_api_version ); // WPPA db version
30
 
2
  /*
3
  * Plugin Name: WP Photo Album Plus
4
  * Description: Easily manage and display your photo albums and slideshows within your WordPress site.
5
+ * Version: 8.0.04.007
6
  * Author: J.N. Breetvelt a.k.a. OpaJaap
7
  * Author URI: http://wppa.opajaap.nl/
8
  * Plugin URI: http://wordpress.org/extend/plugins/wp-photo-album-plus/
24
 
25
  /* WPPA GLOBALS */
26
  global $wppa_api_version;
27
+ $wppa_api_version = '8.0.04.007'; // WPPA software version
28
  global $wppa_revno;
29
  $wppa_revno = str_replace( '.', '', $wppa_api_version ); // WPPA db version
30