Plugin Directory

Changeset 1290232


Ignore:
Timestamp:
11/19/2015 09:41:45 PM (9 years ago)
Author:
unbouncewordpress
Message:

Releasing version 1.0.13

Location:
unbounce
Files:
14 edited
1 copied

Legend:

Unmodified
Added
Removed
  • unbounce/tags/1.0.13/UBConfig.php

    r1288138 r1290232  
    55  const UB_PLUGIN_NAME           = 'ub-wordpress';
    66  const UB_CACHE_TIMEOUT_ENV_KEY = 'UB_WP_ROUTES_CACHE_EXP';
    7   const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.12';
    8   const UB_VERSION               = '1.0.12';
     7  const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.13';
     8  const UB_VERSION               = '1.0.13';
    99
    1010  # Option keys
  • unbounce/tags/1.0.13/UBDiagnostics.php

    r1288138 r1290232  
    2929      'PHP Version'             => phpversion(),
    3030      'WordPress Version'       => UBDiagnostics::wordpress_version(),
    31       'Unbounce Plugin Version' => "1.0.12",
     31      'Unbounce Plugin Version' => "1.0.13",
    3232      'Permalink Structure'     => get_option('permalink_structure', ''),
    3333      'Domain'                  => $domain,
  • unbounce/tags/1.0.13/UBHTTP.php

    r1288138 r1290232  
    206206    UBLogger::debug_var('get_url_purpose $url_without_protocol', $url_without_protocol);
    207207
     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
    208211    if ($http_method == 'GET' && $path == '/_ubhc') {
    209212      return 'HealthCheck';
     
    214217
    215218    } 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)) {
    217220      return "TrackClick";
    218221
    219222    } 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))) {
    222225      return "ViewLandingPage";
    223226
  • unbounce/tags/1.0.13/Unbounce-Page.php

    r1288138 r1290232  
    44Plugin URI: http://unbounce.com
    55Description: Unbounce is the most powerful standalone landing page builder available.
    6 Version: 1.0.12
     6Version: 1.0.13
    77Author: Unbounce
    88Author URI: http://unbounce.com
  • unbounce/tags/1.0.13/readme.txt

    r1288138 r1290232  
    44Requires at least: 4.1.5
    55Tested up to: 4.3
    6 Stable tag: 1.0.12
     6Stable tag: 1.0.13
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • unbounce/tags/1.0.13/templates/main_authorized_footer.php

    r1288138 r1290232  
    1818</a>
    1919<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.12</p>
     20<p class="ub-version">Unbounce Version 1.0.13</p>
  • unbounce/tags/1.0.13/templates/main_unauthorized_footer.php

    r1288138 r1290232  
    55  Click here for troubleshooting and plugin diagnostics
    66</a>
    7 <p class="ub-version">Unbounce Version 1.0.12</p>
     7<p class="ub-version">Unbounce Version 1.0.13</p>
  • unbounce/trunk/UBConfig.php

    r1288138 r1290232  
    55  const UB_PLUGIN_NAME           = 'ub-wordpress';
    66  const UB_CACHE_TIMEOUT_ENV_KEY = 'UB_WP_ROUTES_CACHE_EXP';
    7   const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.12';
    8   const UB_VERSION               = '1.0.12';
     7  const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.13';
     8  const UB_VERSION               = '1.0.13';
    99
    1010  # Option keys
  • unbounce/trunk/UBDiagnostics.php

    r1288138 r1290232  
    2929      'PHP Version'             => phpversion(),
    3030      'WordPress Version'       => UBDiagnostics::wordpress_version(),
    31       'Unbounce Plugin Version' => "1.0.12",
     31      'Unbounce Plugin Version' => "1.0.13",
    3232      'Permalink Structure'     => get_option('permalink_structure', ''),
    3333      'Domain'                  => $domain,
  • unbounce/trunk/UBHTTP.php

    r1288138 r1290232  
    206206    UBLogger::debug_var('get_url_purpose $url_without_protocol', $url_without_protocol);
    207207
     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
    208211    if ($http_method == 'GET' && $path == '/_ubhc') {
    209212      return 'HealthCheck';
     
    214217
    215218    } 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)) {
    217220      return "TrackClick";
    218221
    219222    } 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))) {
    222225      return "ViewLandingPage";
    223226
  • unbounce/trunk/Unbounce-Page.php

    r1288138 r1290232  
    44Plugin URI: http://unbounce.com
    55Description: Unbounce is the most powerful standalone landing page builder available.
    6 Version: 1.0.12
     6Version: 1.0.13
    77Author: Unbounce
    88Author URI: http://unbounce.com
  • unbounce/trunk/readme.txt

    r1288138 r1290232  
    44Requires at least: 4.1.5
    55Tested up to: 4.3
    6 Stable tag: 1.0.12
     6Stable tag: 1.0.13
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • unbounce/trunk/templates/main_authorized_footer.php

    r1288138 r1290232  
    1818</a>
    1919<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.12</p>
     20<p class="ub-version">Unbounce Version 1.0.13</p>
  • unbounce/trunk/templates/main_unauthorized_footer.php

    r1288138 r1290232  
    55  Click here for troubleshooting and plugin diagnostics
    66</a>
    7 <p class="ub-version">Unbounce Version 1.0.12</p>
     7<p class="ub-version">Unbounce Version 1.0.13</p>
Note: See TracChangeset for help on using the changeset viewer.