Plugin Directory

Changeset 3031379


Ignore:
Timestamp:
02/05/2024 07:48:56 AM (2 years ago)
Author:
rsukhar
Message:

Error Patching and Compatibility Upgrades

Location:
convertful
Files:
2 edited
4 copied

Legend:

Unmodified
Added
Removed
  • convertful/tags/2.7/convertful.php

    r2987264 r3031379  
    33/**
    44 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool
    5  * Version: 2.6
     5 * Version: 2.7
    66 * Plugin URI: https://convertful.com/
    77 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing
     
    1212// Global variables for plugin usage (global declaration is needed here for WP CLI compatibility)
    1313global $conv_file, $conv_dir, $conv_uri, $conv_version, $conv_config;
     14$conv_version = '2.7';
    1415$conv_file    = __FILE__;
    1516$conv_dir     = plugin_dir_path( __FILE__ );
    1617$conv_uri     = plugins_url( '', __FILE__ );
    17 $conv_version = preg_match( '~Version: ([^\n]+)~', file_get_contents( __FILE__, NULL, NULL, 82, 150 ), $conv_matches ) ? $conv_matches[1] : FALSE;
    18 unset( $conv_matches );
    1918
    2019if ( file_exists( $conv_dir . 'config.php' ) ) {
  • convertful/tags/2.7/readme.txt

    r2987264 r3031379  
    33Tags: optin, opt-in, mailchimp, popup, bar, slidein, subscribe, signup, form, email, marketing, lead, campaign
    44Requires at least: 4.0
    5 Tested up to: 6.3
    6 Stable tag: 2.6
     5Tested up to: 6.4
     6Stable tag: 2.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    101101
    102102== Changelog ==
     103= 2.7 =
     104* Error Patching and Compatibility Upgrades
     105
    103106= 2.6 =
    104107* Error Patching and Compatibility Upgrades
  • convertful/trunk/convertful.php

    r2987264 r3031379  
    33/**
    44 * Plugin Name: Convertful - Your Ultimate On-Site Conversion Tool
    5  * Version: 2.6
     5 * Version: 2.7
    66 * Plugin URI: https://convertful.com/
    77 * Description: All the modern on-site conversion solutions, natively integrates with all modern Email Marketing
     
    1212// Global variables for plugin usage (global declaration is needed here for WP CLI compatibility)
    1313global $conv_file, $conv_dir, $conv_uri, $conv_version, $conv_config;
     14$conv_version = '2.7';
    1415$conv_file    = __FILE__;
    1516$conv_dir     = plugin_dir_path( __FILE__ );
    1617$conv_uri     = plugins_url( '', __FILE__ );
    17 $conv_version = preg_match( '~Version: ([^\n]+)~', file_get_contents( __FILE__, NULL, NULL, 82, 150 ), $conv_matches ) ? $conv_matches[1] : FALSE;
    18 unset( $conv_matches );
    1918
    2019if ( file_exists( $conv_dir . 'config.php' ) ) {
  • convertful/trunk/readme.txt

    r2987264 r3031379  
    33Tags: optin, opt-in, mailchimp, popup, bar, slidein, subscribe, signup, form, email, marketing, lead, campaign
    44Requires at least: 4.0
    5 Tested up to: 6.3
    6 Stable tag: 2.6
     5Tested up to: 6.4
     6Stable tag: 2.7
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    101101
    102102== Changelog ==
     103= 2.7 =
     104* Error Patching and Compatibility Upgrades
     105
    103106= 2.6 =
    104107* Error Patching and Compatibility Upgrades
Note: See TracChangeset for help on using the changeset viewer.