Changeset 1271956
- Timestamp:
- 10/23/2015 06:31:13 PM (10 years ago)
- Location:
- unbounce
- Files:
-
- 10 edited
- 1 copied
-
tags/1.0.8 (copied) (copied from unbounce/trunk)
-
tags/1.0.8/UBConfig.php (modified) (1 diff)
-
tags/1.0.8/UBDiagnostics.php (modified) (1 diff)
-
tags/1.0.8/UBHTTP.php (modified) (2 diffs)
-
tags/1.0.8/Unbounce-Page.php (modified) (4 diffs)
-
tags/1.0.8/readme.txt (modified) (1 diff)
-
trunk/UBConfig.php (modified) (1 diff)
-
trunk/UBDiagnostics.php (modified) (1 diff)
-
trunk/UBHTTP.php (modified) (2 diffs)
-
trunk/Unbounce-Page.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
unbounce/tags/1.0.8/UBConfig.php
r1266857 r1271956 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. 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'; 9 9 10 10 # Option keys -
unbounce/tags/1.0.8/UBDiagnostics.php
r1266857 r1271956 29 29 'PHP Version' => phpversion(), 30 30 'WordPress Version' => UBDiagnostics::wordpress_version(), 31 'Unbounce Plugin Version' => "1.0. 7",31 'Unbounce Plugin Version' => "1.0.8", 32 32 'Permalink Structure' => get_option('permalink_structure', ''), 33 33 'Domain' => $domain, -
unbounce/tags/1.0.8/UBHTTP.php
r1266757 r1271956 128 128 $cookie_string, 129 129 $headers0, 130 $post_body = null,131 130 $user_agent) { 132 131 … … 158 157 ); 159 158 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'); 162 162 } 163 163 -
unbounce/tags/1.0.8/Unbounce-Page.php
r1266857 r1271956 4 4 Plugin URI: http://unbounce.com 5 5 Description: Publish Unbounce Landing Pages to your Wordpress Domain. 6 Version: 1.0. 76 Version: 1.0.8 7 7 Author: Unbounce 8 8 Author URI: http://unbounce.com … … 151 151 $cookie_string, 152 152 $req_headers, 153 $_POST,154 153 $user_agent); 155 154 … … 263 262 $diagnostics_url = admin_url('admin.php?page=unbounce-pages-diagnostics'); 264 263 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>'; 266 265 }); 267 266 } else { … … 300 299 $diagnostics_url = admin_url('admin.php?page=unbounce-pages-diagnostics'); 301 300 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>'; 303 302 }); 304 303 } -
unbounce/tags/1.0.8/readme.txt
r1266857 r1271956 4 4 Requires at least: 4.1.5 5 5 Tested up to: 4.3 6 Stable tag: 1.0. 76 Stable tag: 1.0.8 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
unbounce/trunk/UBConfig.php
r1266857 r1271956 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. 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'; 9 9 10 10 # Option keys -
unbounce/trunk/UBDiagnostics.php
r1266857 r1271956 29 29 'PHP Version' => phpversion(), 30 30 'WordPress Version' => UBDiagnostics::wordpress_version(), 31 'Unbounce Plugin Version' => "1.0. 7",31 'Unbounce Plugin Version' => "1.0.8", 32 32 'Permalink Structure' => get_option('permalink_structure', ''), 33 33 'Domain' => $domain, -
unbounce/trunk/UBHTTP.php
r1266757 r1271956 128 128 $cookie_string, 129 129 $headers0, 130 $post_body = null,131 130 $user_agent) { 132 131 … … 158 157 ); 159 158 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'); 162 162 } 163 163 -
unbounce/trunk/Unbounce-Page.php
r1266857 r1271956 4 4 Plugin URI: http://unbounce.com 5 5 Description: Publish Unbounce Landing Pages to your Wordpress Domain. 6 Version: 1.0. 76 Version: 1.0.8 7 7 Author: Unbounce 8 8 Author URI: http://unbounce.com … … 151 151 $cookie_string, 152 152 $req_headers, 153 $_POST,154 153 $user_agent); 155 154 … … 263 262 $diagnostics_url = admin_url('admin.php?page=unbounce-pages-diagnostics'); 264 263 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>'; 266 265 }); 267 266 } else { … … 300 299 $diagnostics_url = admin_url('admin.php?page=unbounce-pages-diagnostics'); 301 300 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>'; 303 302 }); 304 303 } -
unbounce/trunk/readme.txt
r1266857 r1271956 4 4 Requires at least: 4.1.5 5 5 Tested up to: 4.3 6 Stable tag: 1.0. 76 Stable tag: 1.0.8 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.