$version_db ) { $info['version'] = $version_files; $info['old_version'] = '0'; update_option( $settings . '_service_info', $info ); return; } // If the version number in the database is greater than the new version number: // - Save the "old_version" marker to the database // - Exit from this function if ( $version_files < $version_db ) { $info['old_version'] = '1'; update_option( $settings . '_service_info', $info ); return; } } spacexchimp_p005_versioning();