Changeset 1290232
- Timestamp:
- 11/19/2015 09:41:45 PM (9 years ago)
- Location:
- unbounce
- Files:
-
- 14 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
unbounce/tags/1.0.13/UBConfig.php
r1288138 r1290232 5 5 const UB_PLUGIN_NAME = 'ub-wordpress'; 6 6 const UB_CACHE_TIMEOUT_ENV_KEY = 'UB_WP_ROUTES_CACHE_EXP'; 7 const UB_USER_AGENT = 'Unbounce WP Plugin 1.0.1 2';8 const UB_VERSION = '1.0.1 2';7 const UB_USER_AGENT = 'Unbounce WP Plugin 1.0.13'; 8 const UB_VERSION = '1.0.13'; 9 9 10 10 # Option keys -
unbounce/tags/1.0.13/UBDiagnostics.php
r1288138 r1290232 29 29 'PHP Version' => phpversion(), 30 30 'WordPress Version' => UBDiagnostics::wordpress_version(), 31 'Unbounce Plugin Version' => "1.0.1 2",31 'Unbounce Plugin Version' => "1.0.13", 32 32 'Permalink Structure' => get_option('permalink_structure', ''), 33 33 'Domain' => $domain, -
unbounce/tags/1.0.13/UBHTTP.php
r1288138 r1290232 206 206 UBLogger::debug_var('get_url_purpose $url_without_protocol', $url_without_protocol); 207 207 208 $url_without_protocol_without_variant = preg_replace('/\/[a-zA-Z]+\.html$/', '', $url_without_protocol); 209 UBLogger::debug_var('get_url_purpose $url_without_protocol_without_variant', $url_without_protocol_without_variant); 210 208 211 if ($http_method == 'GET' && $path == '/_ubhc') { 209 212 return 'HealthCheck'; … … 214 217 215 218 } elseif ($http_method == "GET" && 216 UBHTTP::is_tracking_link($proxyable_url_set, $url_without_protocol )) {219 UBHTTP::is_tracking_link($proxyable_url_set, $url_without_protocol_without_variant)) { 217 220 return "TrackClick"; 218 221 219 222 } elseif (($http_method == "GET" || $http_method == "POST") && 220 (in_array($url_without_protocol , $proxyable_url_set) ||221 UBHTTP::is_confirmation_dialog($proxyable_url_set, $url_without_protocol ))) {223 (in_array($url_without_protocol_without_variant, $proxyable_url_set) || 224 UBHTTP::is_confirmation_dialog($proxyable_url_set, $url_without_protocol_without_variant))) { 222 225 return "ViewLandingPage"; 223 226 -
unbounce/tags/1.0.13/Unbounce-Page.php
r1288138 r1290232 4 4 Plugin URI: http://unbounce.com 5 5 Description: Unbounce is the most powerful standalone landing page builder available. 6 Version: 1.0.1 26 Version: 1.0.13 7 7 Author: Unbounce 8 8 Author URI: http://unbounce.com -
unbounce/tags/1.0.13/readme.txt
r1288138 r1290232 4 4 Requires at least: 4.1.5 5 5 Tested up to: 4.3 6 Stable tag: 1.0.1 26 Stable tag: 1.0.13 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
unbounce/tags/1.0.13/templates/main_authorized_footer.php
r1288138 r1290232 18 18 </a> 19 19 <br/><a class="ub-diagnostics-link" href="<?php echo $diagnostics_url ?>">Click here for troubleshooting and plugin diagnostics</a> 20 <p class="ub-version">Unbounce Version 1.0.1 2</p>20 <p class="ub-version">Unbounce Version 1.0.13</p> -
unbounce/tags/1.0.13/templates/main_unauthorized_footer.php
r1288138 r1290232 5 5 Click here for troubleshooting and plugin diagnostics 6 6 </a> 7 <p class="ub-version">Unbounce Version 1.0.1 2</p>7 <p class="ub-version">Unbounce Version 1.0.13</p> -
unbounce/trunk/UBConfig.php
r1288138 r1290232 5 5 const UB_PLUGIN_NAME = 'ub-wordpress'; 6 6 const UB_CACHE_TIMEOUT_ENV_KEY = 'UB_WP_ROUTES_CACHE_EXP'; 7 const UB_USER_AGENT = 'Unbounce WP Plugin 1.0.1 2';8 const UB_VERSION = '1.0.1 2';7 const UB_USER_AGENT = 'Unbounce WP Plugin 1.0.13'; 8 const UB_VERSION = '1.0.13'; 9 9 10 10 # Option keys -
unbounce/trunk/UBDiagnostics.php
r1288138 r1290232 29 29 'PHP Version' => phpversion(), 30 30 'WordPress Version' => UBDiagnostics::wordpress_version(), 31 'Unbounce Plugin Version' => "1.0.1 2",31 'Unbounce Plugin Version' => "1.0.13", 32 32 'Permalink Structure' => get_option('permalink_structure', ''), 33 33 'Domain' => $domain, -
unbounce/trunk/UBHTTP.php
r1288138 r1290232 206 206 UBLogger::debug_var('get_url_purpose $url_without_protocol', $url_without_protocol); 207 207 208 $url_without_protocol_without_variant = preg_replace('/\/[a-zA-Z]+\.html$/', '', $url_without_protocol); 209 UBLogger::debug_var('get_url_purpose $url_without_protocol_without_variant', $url_without_protocol_without_variant); 210 208 211 if ($http_method == 'GET' && $path == '/_ubhc') { 209 212 return 'HealthCheck'; … … 214 217 215 218 } elseif ($http_method == "GET" && 216 UBHTTP::is_tracking_link($proxyable_url_set, $url_without_protocol )) {219 UBHTTP::is_tracking_link($proxyable_url_set, $url_without_protocol_without_variant)) { 217 220 return "TrackClick"; 218 221 219 222 } elseif (($http_method == "GET" || $http_method == "POST") && 220 (in_array($url_without_protocol , $proxyable_url_set) ||221 UBHTTP::is_confirmation_dialog($proxyable_url_set, $url_without_protocol ))) {223 (in_array($url_without_protocol_without_variant, $proxyable_url_set) || 224 UBHTTP::is_confirmation_dialog($proxyable_url_set, $url_without_protocol_without_variant))) { 222 225 return "ViewLandingPage"; 223 226 -
unbounce/trunk/Unbounce-Page.php
r1288138 r1290232 4 4 Plugin URI: http://unbounce.com 5 5 Description: Unbounce is the most powerful standalone landing page builder available. 6 Version: 1.0.1 26 Version: 1.0.13 7 7 Author: Unbounce 8 8 Author URI: http://unbounce.com -
unbounce/trunk/readme.txt
r1288138 r1290232 4 4 Requires at least: 4.1.5 5 5 Tested up to: 4.3 6 Stable tag: 1.0.1 26 Stable tag: 1.0.13 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
unbounce/trunk/templates/main_authorized_footer.php
r1288138 r1290232 18 18 </a> 19 19 <br/><a class="ub-diagnostics-link" href="<?php echo $diagnostics_url ?>">Click here for troubleshooting and plugin diagnostics</a> 20 <p class="ub-version">Unbounce Version 1.0.1 2</p>20 <p class="ub-version">Unbounce Version 1.0.13</p> -
unbounce/trunk/templates/main_unauthorized_footer.php
r1288138 r1290232 5 5 Click here for troubleshooting and plugin diagnostics 6 6 </a> 7 <p class="ub-version">Unbounce Version 1.0.1 2</p>7 <p class="ub-version">Unbounce Version 1.0.13</p>
Note: See TracChangeset
for help on using the changeset viewer.