Changeset 2608554
- Timestamp:
- 10/03/2021 06:51:24 PM (5 years ago)
- Location:
- quentn-wp/trunk
- Files:
-
- 4 edited
-
includes/class-quentn-wp-elementor-integration.php (modified) (1 diff)
-
includes/class-quentn-wp.php (modified) (1 diff)
-
quentn-wp.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
quentn-wp/trunk/includes/class-quentn-wp-elementor-integration.php
r2562965 r2608554 373 373 $fields[ $id ] = explode( ",", $field['value'] ); 374 374 } elseif ( $field['type'] == 'acceptance' && $field['value'] == 'on' ) { 375 //get ip address 376 if ( isset( $_SERVER['HTTP_CLIENT_IP'] ) ) { 377 $ip = $_SERVER['HTTP_CLIENT_IP']; 378 } elseif ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { 379 $ip = $_SERVER['HTTP_X_FORWARDED_FOR']; 380 } else { 381 $ip = $_SERVER['REMOTE_ADDR']; 382 } 375 383 $fields[ $id ] = array( 376 "ip" => isset( $_SERVER['HTTP_CLIENT_IP'] ) ? $_SERVER['HTTP_CLIENT_IP'] : isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ? $_SERVER['HTTP_X_FORWARDED_FOR'] : $_SERVER['REMOTE_ADDR'],384 "ip" => $ip, 377 385 "created" => time(), 378 386 "source" => Helper::get_current_host_name(), -
quentn-wp/trunk/includes/class-quentn-wp.php
r2562965 r2608554 75 75 $this->version = QUENTN_WP_VERSION; 76 76 } else { 77 $this->version = '1.1. 7';77 $this->version = '1.1.8'; 78 78 } 79 79 $this->plugin_name = 'quentn-wp'; -
quentn-wp/trunk/quentn-wp.php
r2562965 r2608554 17 17 * Plugin URI: https://docs.quentn.com/de/beta-quentn-wordpress-plugin/installieren-und-verbinden 18 18 * Description: This plugin allows you to restrict access to specific pages, create custom access links and create dynamic page countdowns. Optionally, you can connect your Quentn account to your WordPress installation to share contacts and manage access restrictions through Quentn. 19 * Version: 1.1. 719 * Version: 1.1.8 20 20 * Author: Quentn.com GmbH 21 21 * Author URI: https://quentn.com/ … … 35 35 define( "TABLE_QUENTN_RESTRICTIONS", 'qntn_restrictions' ); 36 36 define( "TABLE_QUENTN_USER_DATA", 'qntn_user_data' ); 37 define( 'QUENTN_WP_VERSION', '1.1. 7' );37 define( 'QUENTN_WP_VERSION', '1.1.8' ); 38 38 39 39 /** -
quentn-wp/trunk/readme.txt
r2562965 r2608554 3 3 Tags: Quentn, countdown, page restriction, email, elementor integration, email marketing tool, integration, email automation, marketing automation 4 4 Requires at least: 4.6.0 5 Tested up to: 5. 76 Stable tag: 1.1. 75 Tested up to: 5.8 6 Stable tag: 1.1.8 7 7 Requires PHP: 5.6.0 8 8 License: GPLv2 or later … … 66 66 67 67 == Changelog == 68 = 1.1.8 = 69 * Fixed minor issue how ternary operators used in Elementor integration. 70 68 71 = 1.1.7 = 69 72 * Prefix Guzzle library namespace to avoid conflict with other plugins. … … 128 131 == Upgrade Notice == 129 132 133 = 1.1.8 = 134 Thanks for using Quentn Plugin! Please update the plugin to fix ternary operator error in Elementor integration. 135 130 136 = 1.1.7 = 131 137 Thanks for using Quentn Plugin! Please update the plugin to avoid conflict of Guzzle library with other plugins.
Note: See TracChangeset
for help on using the changeset viewer.