Plugin Directory

Changeset 2916952


Ignore:
Timestamp:
05/24/2023 06:17:50 PM (3 years ago)
Author:
Infusionsoft
Message:

1.0.11 PHP 8.0 fix and update to compatibility versions.

Location:
infusionsoft-official-opt-in-forms/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • infusionsoft-official-opt-in-forms/trunk/changelog.txt

    r2879992 r2916952  
     1version 1.0.11
     2- Fixes compatibility issue with PHP 8.0+. Updates to compatibility versions.
     3
    14version 1.0.10
    25- Fixes compatibility issue with PHP 8.0+
  • infusionsoft-official-opt-in-forms/trunk/infusionsoft.php

    r2879992 r2916952  
    33 * Plugin Name: Keap Official Opt-in Forms
    44 * Plugin URI: https://www.keap.com
    5  * Version: 1.0.10
     5 * Version: 1.0.11
    66 * Description: Keap Official Opt-in Forms
    77 * Author: Keap
     
    3030
    3131class INF_Infusionsoft extends INF_Dashboard {
    32     var $plugin_version = '1.0.10';
     32    var $plugin_version = '1.0.11';
    3333    var $db_version = '1.0';
    3434    var $_options_pagename = 'inf_infusionsoft_options';
     
    24462446        if ( $result == 'success' ) {
    24472447            $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 ) {
    24492449                $this->update_account( 'infusionsoft', sanitize_text_field( $name ), array(
    24502450                    'api_key'       => sanitize_text_field( $api_key ),
  • infusionsoft-official-opt-in-forms/trunk/readme.txt

    r2879992 r2916952  
    33Tags: 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
    44Requires at least: 6.0
    5 Tested up to: 6.1.1
     5Tested up to: 6.2.2
    66Requires PHP: 8.0
    7 Stable tag: 1.0.10
     7Stable tag: 1.0.11
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8282== Changelog ==
    8383
     84= 1.0.11 =
     85* Fixes compatibility issue with PHP 8.0+. Updates to compatibility versions.
     86
    8487= 1.0.10 =
    8588* Fixes compatibility issue with PHP 8.0+
     
    129132== Upgrade Notice ==
    130133
     134= 1.0.11 =
     135Fixes compatibility issue with PHP 8.0+. Updates to compatibility versions.
     136
    131137= 1.0.10 =
    132138Fixes compatibility issue with PHP 8.0+
Note: See TracChangeset for help on using the changeset viewer.