Changeset 2916952
- Timestamp:
- 05/24/2023 06:17:50 PM (3 years ago)
- Location:
- infusionsoft-official-opt-in-forms/trunk
- Files:
-
- 3 edited
-
changelog.txt (modified) (1 diff)
-
infusionsoft.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
infusionsoft-official-opt-in-forms/trunk/changelog.txt
r2879992 r2916952 1 version 1.0.11 2 - Fixes compatibility issue with PHP 8.0+. Updates to compatibility versions. 3 1 4 version 1.0.10 2 5 - Fixes compatibility issue with PHP 8.0+ -
infusionsoft-official-opt-in-forms/trunk/infusionsoft.php
r2879992 r2916952 3 3 * Plugin Name: Keap Official Opt-in Forms 4 4 * Plugin URI: https://www.keap.com 5 * Version: 1.0.1 05 * Version: 1.0.11 6 6 * Description: Keap Official Opt-in Forms 7 7 * Author: Keap … … 30 30 31 31 class INF_Infusionsoft extends INF_Dashboard { 32 var $plugin_version = '1.0.1 0';32 var $plugin_version = '1.0.11'; 33 33 var $db_version = '1.0'; 34 34 var $_options_pagename = 'inf_infusionsoft_options'; … … 2446 2446 if ( $result == 'success' ) { 2447 2447 $options_array = self::get_infusionsoft_options(); 2448 if ( sizeof( $options_array['accounts']['infusionsoft'] ) == 0 ) {2448 if ( !is_array($options_array) or !is_array($options_array['accounts']) or sizeof( $options_array['accounts']['infusionsoft'] ) == 0 ) { 2449 2449 $this->update_account( 'infusionsoft', sanitize_text_field( $name ), array( 2450 2450 'api_key' => sanitize_text_field( $api_key ), -
infusionsoft-official-opt-in-forms/trunk/readme.txt
r2879992 r2916952 3 3 Tags: keap, keap api, keap wordpress, wp popup, wordpress popup plugin, wordpress subscription plugin, responsive opt-in subscription plugin, free optinmonster alternative, list builder, sumome alternative, how to increase email list, email form, scroll box, newsletter, inbound marketing, mailing list, landing page, light box, email list building, subscribers, subscription, infusionsoft 4 4 Requires at least: 6.0 5 Tested up to: 6. 1.15 Tested up to: 6.2.2 6 6 Requires PHP: 8.0 7 Stable tag: 1.0.1 07 Stable tag: 1.0.11 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 82 82 == Changelog == 83 83 84 = 1.0.11 = 85 * Fixes compatibility issue with PHP 8.0+. Updates to compatibility versions. 86 84 87 = 1.0.10 = 85 88 * Fixes compatibility issue with PHP 8.0+ … … 129 132 == Upgrade Notice == 130 133 134 = 1.0.11 = 135 Fixes compatibility issue with PHP 8.0+. Updates to compatibility versions. 136 131 137 = 1.0.10 = 132 138 Fixes compatibility issue with PHP 8.0+
Note: See TracChangeset
for help on using the changeset viewer.