Plugin Directory

Changeset 1271956


Ignore:
Timestamp:
10/23/2015 06:31:13 PM (10 years ago)
Author:
unbouncewordpress
Message:

Releasing version 1.0.8

Location:
unbounce
Files:
10 edited
1 copied

Legend:

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

    r1266857 r1271956  
    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.7';
    8   const UB_VERSION               = '1.0.7';
     7  const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.8';
     8  const UB_VERSION               = '1.0.8';
    99
    1010  # Option keys
  • unbounce/tags/1.0.8/UBDiagnostics.php

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

    r1266757 r1271956  
    128128                                        $cookie_string,
    129129                                        $headers0,
    130                                         $post_body = null,
    131130                                        $user_agent) {
    132131
     
    158157    );
    159158
    160     if ($method == "POST" && $post_body != null) {
    161       $curl_options[CURLOPT_POSTFIELDS] = http_build_query($post_body);
     159    if ($method == "POST") {
     160      // Use raw post body to allow the same post key to occur more than once
     161      $curl_options[CURLOPT_POSTFIELDS] = file_get_contents('php://input');
    162162    }
    163163
  • unbounce/tags/1.0.8/Unbounce-Page.php

    r1266857 r1271956  
    44Plugin URI: http://unbounce.com
    55Description: Publish Unbounce Landing Pages to your Wordpress Domain.
    6 Version: 1.0.7
     6Version: 1.0.8
    77Author: Unbounce
    88Author URI: http://unbounce.com
     
    151151                           $cookie_string,
    152152                           $req_headers,
    153                            $_POST,
    154153                           $user_agent);
    155154
     
    263262      $diagnostics_url = admin_url('admin.php?page=unbounce-pages-diagnostics');
    264263      echo "<br/><a class='ub-diagnostics-link' href='${diagnostics_url}'>Diagnostics</a>";
    265       echo '<p class="ub-version">Unbounce Version 1.0.7</p>';
     264      echo '<p class="ub-version">Unbounce Version 1.0.8</p>';
    266265    });
    267266  } else {
     
    300299      $diagnostics_url = admin_url('admin.php?page=unbounce-pages-diagnostics');
    301300      echo "<br/><a class='ub-diagnostics-link' href='${diagnostics_url}'>Diagnostics</a>";
    302       echo '<p class="ub-version">Unbounce Version 1.0.7</p>';
     301      echo '<p class="ub-version">Unbounce Version 1.0.8</p>';
    303302    });
    304303  }
  • unbounce/tags/1.0.8/readme.txt

    r1266857 r1271956  
    44Requires at least: 4.1.5
    55Tested up to: 4.3
    6 Stable tag: 1.0.7
     6Stable tag: 1.0.8
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • unbounce/trunk/UBConfig.php

    r1266857 r1271956  
    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.7';
    8   const UB_VERSION               = '1.0.7';
     7  const UB_USER_AGENT            = 'Unbounce WP Plugin 1.0.8';
     8  const UB_VERSION               = '1.0.8';
    99
    1010  # Option keys
  • unbounce/trunk/UBDiagnostics.php

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

    r1266757 r1271956  
    128128                                        $cookie_string,
    129129                                        $headers0,
    130                                         $post_body = null,
    131130                                        $user_agent) {
    132131
     
    158157    );
    159158
    160     if ($method == "POST" && $post_body != null) {
    161       $curl_options[CURLOPT_POSTFIELDS] = http_build_query($post_body);
     159    if ($method == "POST") {
     160      // Use raw post body to allow the same post key to occur more than once
     161      $curl_options[CURLOPT_POSTFIELDS] = file_get_contents('php://input');
    162162    }
    163163
  • unbounce/trunk/Unbounce-Page.php

    r1266857 r1271956  
    44Plugin URI: http://unbounce.com
    55Description: Publish Unbounce Landing Pages to your Wordpress Domain.
    6 Version: 1.0.7
     6Version: 1.0.8
    77Author: Unbounce
    88Author URI: http://unbounce.com
     
    151151                           $cookie_string,
    152152                           $req_headers,
    153                            $_POST,
    154153                           $user_agent);
    155154
     
    263262      $diagnostics_url = admin_url('admin.php?page=unbounce-pages-diagnostics');
    264263      echo "<br/><a class='ub-diagnostics-link' href='${diagnostics_url}'>Diagnostics</a>";
    265       echo '<p class="ub-version">Unbounce Version 1.0.7</p>';
     264      echo '<p class="ub-version">Unbounce Version 1.0.8</p>';
    266265    });
    267266  } else {
     
    300299      $diagnostics_url = admin_url('admin.php?page=unbounce-pages-diagnostics');
    301300      echo "<br/><a class='ub-diagnostics-link' href='${diagnostics_url}'>Diagnostics</a>";
    302       echo '<p class="ub-version">Unbounce Version 1.0.7</p>';
     301      echo '<p class="ub-version">Unbounce Version 1.0.8</p>';
    303302    });
    304303  }
  • unbounce/trunk/readme.txt

    r1266857 r1271956  
    44Requires at least: 4.1.5
    55Tested up to: 4.3
    6 Stable tag: 1.0.7
     6Stable tag: 1.0.8
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.