WP Photo Album Plus - Version 7.7.07.007

Version Description

= 7.7.07 =

  • 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 7.7.07.007
Comparing to
See all releases

Code changes from version 7.7.07.008 to 7.7.07.007

Files changed (2) hide show
  1. wppa-setup.php +4 -13
  2. wppa.php +2 -2
wppa-setup.php CHANGED
@@ -3,7 +3,7 @@
3
  * Package: wp-photo-album-plus
4
  *
5
  * Contains all the setup stuff
6
- * Version 7.7.07.008
7
  *
8
  */
9
 
@@ -63,7 +63,7 @@ global $wppa_error;
63
  views bigint(20) NOT NULL default '0',
64
  cats text NOT NULL,
65
  scheduledtm tinytext NOT NULL,
66
- custom text NOT NULL,
67
  crypt tinytext NOT NULL,
68
  treecounts text NOT NULL,
69
  wmfile tinytext NOT NULL,
@@ -82,7 +82,7 @@ global $wppa_error;
82
  album bigint(20) NOT NULL,
83
  ext tinytext NOT NULL,
84
  name text NOT NULL,
85
- description text NOT NULL,
86
  p_order smallint(5) NOT NULL,
87
  mean_rating tinytext NOT NULL,
88
  linkurl text NOT NULL,
@@ -109,7 +109,7 @@ global $wppa_error;
109
  photoy smallint(5) NOT NULL default '0',
110
  scheduledtm tinytext NOT NULL,
111
  scheduledel tinytext NOT NULL,
112
- custom text NOT NULL,
113
  stereo smallint NOT NULL default '0',
114
  crypt tinytext NOT NULL,
115
  magickstack text NOT NULL,
@@ -202,15 +202,6 @@ global $wppa_error;
202
  $tn = array( WPPA_ALBUMS, WPPA_PHOTOS, WPPA_RATING, WPPA_COMMENTS, WPPA_IPTC, WPPA_EXIF, WPPA_INDEX, WPPA_SESSION );
203
  $tc = array( $create_albums, $create_photos, $create_rating, $create_comments, $create_iptc, $create_exif, $create_index, $create_session );
204
  $idx = 0;
205
-
206
- // Change longtext into text in existring db
207
- if ( $old_rev > '100' ) {
208
- $wpdb->query( "ALTER TABLE $wpdb->wppa_albums CHANGE `custom` `custom` TEXT CHARACTER SET utf8 NOT NULL;" );
209
- $wpdb->query( "ALTER TABLE $wpdb->wppa_photos CHANGE `custom` `custom` TEXT CHARACTER SET utf8 NOT NULL;" );
210
- $wpdb->query( "ALTER TABLE $wpdb->wppa_albums CHANGE `description` `description` TEXT CHARACTER SET utf8 NOT NULL;" );
211
- $wpdb->query( "ALTER TABLE $wpdb->wppa_photos CHANGE `description` `description` TEXT CHARACTER SET utf8 NOT NULL;" );
212
- }
213
-
214
  while ( $idx < 8 ) {
215
  dbDelta( $tc[$idx] );
216
  $idx++;
3
  * Package: wp-photo-album-plus
4
  *
5
  * Contains all the setup stuff
6
+ * Version 7.7.05.002
7
  *
8
  */
9
 
63
  views bigint(20) NOT NULL default '0',
64
  cats text NOT NULL,
65
  scheduledtm tinytext NOT NULL,
66
+ custom longtext NOT NULL,
67
  crypt tinytext NOT NULL,
68
  treecounts text NOT NULL,
69
  wmfile tinytext NOT NULL,
82
  album bigint(20) NOT NULL,
83
  ext tinytext NOT NULL,
84
  name text NOT NULL,
85
+ description longtext NOT NULL,
86
  p_order smallint(5) NOT NULL,
87
  mean_rating tinytext NOT NULL,
88
  linkurl text NOT NULL,
109
  photoy smallint(5) NOT NULL default '0',
110
  scheduledtm tinytext NOT NULL,
111
  scheduledel tinytext NOT NULL,
112
+ custom longtext NOT NULL,
113
  stereo smallint NOT NULL default '0',
114
  crypt tinytext NOT NULL,
115
  magickstack text NOT NULL,
202
  $tn = array( WPPA_ALBUMS, WPPA_PHOTOS, WPPA_RATING, WPPA_COMMENTS, WPPA_IPTC, WPPA_EXIF, WPPA_INDEX, WPPA_SESSION );
203
  $tc = array( $create_albums, $create_photos, $create_rating, $create_comments, $create_iptc, $create_exif, $create_index, $create_session );
204
  $idx = 0;
 
 
 
 
 
 
 
 
 
205
  while ( $idx < 8 ) {
206
  dbDelta( $tc[$idx] );
207
  $idx++;
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: 7.7.07.008
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 = '7.7.07.008'; // 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: 7.7.07.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 = '7.7.07.007'; // WPPA software version
28
  global $wppa_revno;
29
  $wppa_revno = str_replace( '.', '', $wppa_api_version ); // WPPA db version
30