Plugin Directory

Changeset 3243983


Ignore:
Timestamp:
02/20/2025 03:16:44 PM (14 months ago)
Author:
mailcamp
Message:

moved mailcamp_run() function to add_action()

Location:
mailcamp/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • mailcamp/trunk/README.txt

    r3124549 r3243983  
    44Donate link: https://mailcamp.nl/contact
    55Requires at least: 4.9.1
    6 Tested up to: 6.6
    7 Stable tag: 1.6.1
     6Tested up to: 6.7.2
     7Stable tag: 1.6.2
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2121This section describes how to install the plugin and get started using it.
    2222
    23 = Version 1.6.1 =
     23= Version 1.6.2 =
    24241. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    25252. Activate the plugin through the **Plugins** menu in WordPress
     
    3030
    3131== Changelog ==
     32
     33= 1.6.2 =
     34* improved - moved mailcamp_run() function to add_action()
    3235
    3336= 1.6.1 =
  • mailcamp/trunk/mailcamp.php

    r3124549 r3243983  
    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.6.1
     16 * Version:           1.6.2
    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.6.1');
     35define('MAILCAMP_VERSION', '1.6.2');
    3636/**
    3737 * The code that runs during plugin activation.
     
    8282}
    8383
    84 mailcamp_run();
     84add_action('plugins_loaded', 'mailcamp_run');
  • mailcamp/trunk/readme.md

    r3124549 r3243983  
    44Tags: mailcamp,email marketing,email,newsletter,marketing
    55Requires at least: 4.9.1
    6 Tested up to: 6.6
    7 Stable tag: 1.6.1
     6Tested up to: 6.7.2
     7Stable tag: 1.6.2
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    2424This section describes how to install the plugin and get started using it.
    2525
    26 ### Version 1.6.0 ###
     26### Version 1.6.2 ###
    27271. Unzip our archive and upload the entire mailcamp directory to your `/wp-content/plugins/ directory`
    28282. Activate the plugin through the **Plugins** menu in WordPress
     
    3333
    3434## Changelog ##
     35
     36### 1.6.2 ###
     37* improved - moved mailcamp_run() function to add_action()
    3538
    3639### 1.6.1 ###
Note: See TracChangeset for help on using the changeset viewer.