Plugin Directory

Changeset 3112984


Ignore:
Timestamp:
07/05/2024 10:58:11 AM (21 months ago)
Author:
mailcamp
Message:

API call update

Location:
mailcamp/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • mailcamp/trunk/README.txt

    r3111243 r3112984  
    55Requires at least: 4.9.1
    66Tested up to: 6.5.5
    7 Stable Tag: 1.5.19
     7Stable Tag: 1.5.20
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2222This section describes how to install the plugin and get started using it.
    2323
    24 = Version 1.5.19 =
     24= Version 1.5.20 =
    25251. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    26262. Activate the plugin through the **Plugins** menu in WordPress
     
    3131
    3232== Changelog ==
     33
     34== 1.5.20 ==
     35* improved - reduced API calls
    3336
    3437== 1.5.19 ==
  • mailcamp/trunk/includes/core-functions.php

    r3111239 r3112984  
    237237        return $fields;
    238238    }
    239 
     239   
     240    if ( !isset($options_form['custom_fields']) || empty($options_form['custom_fields']) ) {
     241        return $fields;
     242    }
     243
     244    /*
     245     * DO NOT TRY TO GET THE CUSTOM FIELDS IF THEY ARE NOT SET
    240246    if ( !isset($options_form['custom_fields']) ) {
    241247
     
    268274
    269275    $options_form = get_option( 'mailcamp_options_form' );
     276    */
    270277
    271278    $temp_custom_fields = [];
  • mailcamp/trunk/mailcamp.php

    r3111239 r3112984  
    1414 * Plugin URI:        https://mailcamp.nl/ecommerce/koppel-wordpress-plugin-aan-mailinglijst-in-mailcamp/
    1515 * Description:       MailCamp form plugin. A simple plugin that adds a highly effective subscription form to your site.
    16  * Version:           1.5.19
     16 * Version:           1.5.20
    1717 * Author:            Silas de Rooy
    1818 * Author URI:        https://mailcamp.nl
     
    3333 * Rename this for your plugin and update it as you release new versions.
    3434 */
    35 define('MAILCAMP_VERSION', '1.5.19');
     35define('MAILCAMP_VERSION', '1.5.20');
    3636/**
    3737 * The code that runs during plugin activation.
  • mailcamp/trunk/readme.md

    r3111243 r3112984  
    55Requires at least: 4.9.1
    66Tested up to: 6.5.5
    7 Stable tag: 1.5.19
     7Stable tag: 1.5.20
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2020This section describes how to install the plugin and get started using it.
    2121
    22 = Version 1.5.19 =
     22= Version 1.5.20 =
    23231. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    24242. Activate the plugin through the **Plugins** menu in WordPress
     
    2929
    3030## Changelog ##
     31
     32### 1.5.20 ###
     33* improved - reduced API calls
    3134
    3235### 1.5.19 ###
Note: See TracChangeset for help on using the changeset viewer.