Plugin Directory

Changeset 1470330


Ignore:
Timestamp:
08/08/2016 10:12:02 PM (10 years ago)
Author:
inboundrocket
Message:

version 1.3.4

Location:
inbound-rocket/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • inbound-rocket/trunk/inbound-rocket.php

    r1469770 r1470330  
    44Plugin URI: http://wordpress.org/extend/plugins/inbound-rocket/
    55Description: Introducing a new way of generating traffic and converting them into leads on WordPress. Inbound Rocket is an easy-to-use marketing automation plugin for WordPress. It features visitor activity tracking and the management of incoming leads to better understand your web visitors. It also offers great power-ups to help you get even more visitors and help them convert to leads, subscribers and customers.
    6 Version: 1.3.3
     6Version: 1.3.4
    77Author: Inbound Rocket
    88Text Domain: inbound-rocket
     
    3636
    3737if ( !defined('INBOUNDROCKET_PLUGIN_VERSION') )
    38     define('INBOUNDROCKET_PLUGIN_VERSION', '1.3.3');
     38    define('INBOUNDROCKET_PLUGIN_VERSION', '1.3.4');
    3939
    4040if ( !defined('INBOUNDROCKET_ENABLE_DEBUG') )
     
    478478
    479479/**
    480  * Checks if the Evercookie directory exists if so enables in options
     480 * Checks if Evercookie was enabled with a previous install if so enables in options
    481481 *
    482482 */
    483 function inboundrocket_check_evercookie ()
    484 {
    485     if(is_dir(INBOUNDROCKET_PLUGIN_DIR.'/inc/lib/evercookie/')){
    486         inboundrocket_update_option('inboundrocket_options','ir_enable_evercookie', 1);
    487         inboundrocket_update_option('inboundrocket_options','ir_enable_evercookie_status','enabled');   
    488         inboundrocket_track_plugin_activity("Tracking Method: Evercookie");
    489     } else {
    490         inboundrocket_track_plugin_activity("Tracking Method: HTTP Cookies");
     483function inboundrocket_check_evercookie()
     484{
     485    $options = get_option('inboundrocket_options');
     486   
     487    $db_ver = $options['ir_db_version'];
     488   
     489    if($db_ver < '1.2'){
     490        inboundrocket_install_evercookie();
    491491    }
    492492}
     
    496496 *
    497497 */
    498 function inboundrocket_set_wpdb_tables ()
     498function inboundrocket_set_wpdb_tables()
    499499{
    500500    global $wpdb;
  • inbound-rocket/trunk/readme.txt

    r1469770 r1470330  
    44Requires at least: 2.5
    55Tested up to: 4.5.3
    6 Stable tag: 1.3.3
     6Stable tag: 1.3.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6363
    6464== Changelog ==
     65= 1.3.4 =
     66Minor bug fix for our existing Inbound Rocket users.
     67
    6568= 1.3.3 =
    6669Not seeing anything new? That’s because this release is mostly focused on behind the scene changes especially for our new users starting with Inbound Rocket.
Note: See TracChangeset for help on using the changeset viewer.