Changeset 1470330
- Timestamp:
- 08/08/2016 10:12:02 PM (10 years ago)
- Location:
- inbound-rocket/trunk
- Files:
-
- 2 edited
-
inbound-rocket.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
inbound-rocket/trunk/inbound-rocket.php
r1469770 r1470330 4 4 Plugin URI: http://wordpress.org/extend/plugins/inbound-rocket/ 5 5 Description: 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. 36 Version: 1.3.4 7 7 Author: Inbound Rocket 8 8 Text Domain: inbound-rocket … … 36 36 37 37 if ( !defined('INBOUNDROCKET_PLUGIN_VERSION') ) 38 define('INBOUNDROCKET_PLUGIN_VERSION', '1.3. 3');38 define('INBOUNDROCKET_PLUGIN_VERSION', '1.3.4'); 39 39 40 40 if ( !defined('INBOUNDROCKET_ENABLE_DEBUG') ) … … 478 478 479 479 /** 480 * Checks if the Evercookie directory existsif so enables in options480 * Checks if Evercookie was enabled with a previous install if so enables in options 481 481 * 482 482 */ 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");483 function 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(); 491 491 } 492 492 } … … 496 496 * 497 497 */ 498 function inboundrocket_set_wpdb_tables ()498 function inboundrocket_set_wpdb_tables() 499 499 { 500 500 global $wpdb; -
inbound-rocket/trunk/readme.txt
r1469770 r1470330 4 4 Requires at least: 2.5 5 5 Tested up to: 4.5.3 6 Stable tag: 1.3. 36 Stable tag: 1.3.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 63 63 64 64 == Changelog == 65 = 1.3.4 = 66 Minor bug fix for our existing Inbound Rocket users. 67 65 68 = 1.3.3 = 66 69 Not 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.