| @@ -1,13 +1,15 @@ | ||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | 3 | namespace Leadin; |
| 4 | 4 | |
| 5 | +if ( ! defined( 'ABSPATH' ) ) exit; | |
| 6 | + | |
| 5 | 7 | /** |
| 6 | 8 | * Plugin Name: HubSpot All-In-One Marketing - Forms, Popups, Live Chat |
| 7 | 9 | * Plugin URI: http://www.hubspot.com/integrations/wordpress |
| 8 | 10 | * Description: HubSpot’s official WordPress plugin allows you to add forms, popups, and live chat to your website and integrate with the best WordPress CRM. |
| 9 | - * Version: 11.0.32 | |
| 11 | + * Version: 11.3.75 | |
| 10 | 12 | * Author: HubSpot |
| 11 | 13 | * Author URI: http://hubspot.com/products/wordpress |
| 12 | 14 | * License: GPL v3 |
| 13 | 15 | * Text Domain: leadin |
| @@ -58,14 +60,21 @@ | ||
| 58 | 60 | define( 'LEADIN_REQUIRED_PHP_VERSION', '7.2' ); |
| 59 | 61 | } |
| 60 | 62 | |
| 61 | 63 | if ( ! defined( 'LEADIN_PLUGIN_VERSION' ) ) { |
| 62 | - define( 'LEADIN_PLUGIN_VERSION', '11.0.32' ); | |
| 64 | + define( 'LEADIN_PLUGIN_VERSION', '11.3.75' ); | |
| 63 | 65 | } |
| 64 | 66 | |
| 65 | - | |
| 66 | 67 | if ( ! defined( 'LEADIN_PREFIX' ) ) { |
| 67 | 68 | define( 'LEADIN_PREFIX', 'leadin' ); |
| 69 | +} | |
| 70 | + | |
| 71 | +if ( ! defined( 'LEADIN_KEY' ) && defined( 'LOGGED_IN_KEY' ) ) { | |
| 72 | + define( 'LEADIN_KEY', LOGGED_IN_KEY ); | |
| 73 | +} | |
| 74 | + | |
| 75 | +if ( ! defined( 'LEADIN_SALT' ) && defined( 'LOGGED_IN_SALT' ) ) { | |
| 76 | + define( 'LEADIN_SALT', LOGGED_IN_SALT ); | |
| 68 | 77 | } |
| 69 | 78 | |
| 70 | 79 | // ============================================= |
| 71 | 80 | // Set autoload |