Changeset 2344974
- Timestamp:
- 07/22/2020 07:07:26 PM (6 years ago)
- File:
-
- 1 edited
-
wn-flipbox-pro/trunk/wp-hover-images.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wn-flipbox-pro/trunk/wp-hover-images.php
r2344948 r2344974 108 108 109 109 function version_check() 110 { 111 $general_options = get_option( 'WN_Image_Hover' ); 112 113 if ( array_key_exists( 'version', $general_options ) ) { 114 if ( $general_options['version'] != '1.11' ) { 110 { 111 $general_options = get_option( 'WN_Image_Hover' ); 112 if($general_options != ''){ 113 if (array_key_exists('version', $general_options ) ) { 114 if ( $general_options['version'] != '1.11' ) { 115 $this->update_version( $general_options ); 116 } 117 } else { 115 118 $this->update_version( $general_options ); 116 119 } 117 } else {118 $this->update_version( $general_options );119 120 } 120 121
Note: See TracChangeset
for help on using the changeset viewer.