Changeset 1456529
- Timestamp:
- 07/18/2016 06:04:00 PM (9 years ago)
- Location:
- unbounce
- Files:
-
- 14 edited
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
unbounce/tags/1.0.24/UBConfig.php
r1445981 r1456529 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.2 3';8 const UB_VERSION = '1.0.2 3';7 const UB_USER_AGENT = 'Unbounce WP Plugin 1.0.24'; 8 const UB_VERSION = '1.0.24'; 9 9 10 10 // Option keys -
unbounce/tags/1.0.24/UBDiagnostics.php
r1445981 r1456529 29 29 'PHP Version' => phpversion(), 30 30 'WordPress Version' => UBDiagnostics::wordpress_version(), 31 'Unbounce Plugin Version' => '1.0.2 3',31 'Unbounce Plugin Version' => '1.0.24', 32 32 'Permalink Structure' => get_option('permalink_structure', ''), 33 33 'Domain' => $domain, -
unbounce/tags/1.0.24/UBHTTP.php
r1445981 r1456529 101 101 $https = UBUtil::array_fetch($server_global, 'HTTPS', 'off'); 102 102 103 UBLogger::debug_var('UBHTTP::forwarded_proto', $forwarded_proto); 104 UBLogger::debug_var('UBHTTP::request_scheme', $request_scheme); 105 UBLogger::debug_var('UBHTTP::script_uri', $script_uri); 106 UBLogger::debug_var('UBHTTP::script_uri_scheme', $script_uri_scheme); 107 UBLogger::debug_var('UBHTTP::https', $https); 108 103 109 // X-Forwarded-Proto should be respected first, as it is what the end 104 110 // user will see (if Wordpress is behind a load balancer). … … 106 112 return $forwarded_proto . '://'; 107 113 } 114 // Wordpress' is_ssl() may return the correct boolean for http/https if 115 // the site was setup properly. 116 elseif($wp_is_ssl || !is_null($https) && $https !== 'off') { 117 return 'https://'; 118 } 108 119 // Next use REQUEST_SCHEME, if it is available. This is the recommended way 109 120 // to get the protocol, but it is not available on all hosts. … … 114 125 elseif(UBHTTP::is_valid_protocol($script_uri_scheme)) { 115 126 return $script_uri_scheme . '://'; 116 }117 // Wordpress' is_ssl() may return the correct boolean for http/https if118 // the site was setup properly.119 elseif($wp_is_ssl || !is_null($https) && $https !== 'off') {120 return 'https://';121 127 } 122 128 // We default to http as most HTTPS sites will also have HTTP available. -
unbounce/tags/1.0.24/Unbounce-Page.php
r1445981 r1456529 4 4 Plugin URI: http://unbounce.com 5 5 Description: Unbounce is the most powerful standalone landing page builder available. 6 Version: 1.0.2 36 Version: 1.0.24 7 7 Author: Unbounce 8 8 Author URI: http://unbounce.com -
unbounce/tags/1.0.24/readme.txt
r1445981 r1456529 3 3 Tags: Unbounce, AB testing, A/B testing, split testing, CRO, conversion optimization, wordpress landing page, wp landing pages, splash pages, landing pages, squeeze pages, lead gen, lead generation, email list, responsive landing pages, templates, inbound marketing, ppc, analytics 4 4 Requires at least: 4.1.5 5 Tested up to: 4. 46 Stable tag: 1.0.2 35 Tested up to: 4.5.3 6 Stable tag: 1.0.24 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 91 92 = 1.0.24= 93 * Improves support for installations using SSL 94 * is_ssl() has higher precedence for determing protocol of content to serve 95 92 96 = 1.0.23 = 93 97 * Add optional support for web servers with a load balancer or proxy that is on a different network -
unbounce/tags/1.0.24/templates/main_authorized_footer.php
r1445981 r1456529 19 19 </a> 20 20 <br/><a class="ub-diagnostics-link" href="<?php echo $diagnostics_url ?>">Click here for troubleshooting and plugin diagnostics</a> 21 <p class="ub-version">Unbounce Version 1.0.2 3</p>21 <p class="ub-version">Unbounce Version 1.0.24</p> -
unbounce/tags/1.0.24/templates/main_unauthorized_footer.php
r1445981 r1456529 5 5 Click here for troubleshooting and plugin diagnostics 6 6 </a> 7 <p class="ub-version">Unbounce Version 1.0.2 3</p>7 <p class="ub-version">Unbounce Version 1.0.24</p> -
unbounce/trunk/UBConfig.php
r1445981 r1456529 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.2 3';8 const UB_VERSION = '1.0.2 3';7 const UB_USER_AGENT = 'Unbounce WP Plugin 1.0.24'; 8 const UB_VERSION = '1.0.24'; 9 9 10 10 // Option keys -
unbounce/trunk/UBDiagnostics.php
r1445981 r1456529 29 29 'PHP Version' => phpversion(), 30 30 'WordPress Version' => UBDiagnostics::wordpress_version(), 31 'Unbounce Plugin Version' => '1.0.2 3',31 'Unbounce Plugin Version' => '1.0.24', 32 32 'Permalink Structure' => get_option('permalink_structure', ''), 33 33 'Domain' => $domain, -
unbounce/trunk/UBHTTP.php
r1445981 r1456529 101 101 $https = UBUtil::array_fetch($server_global, 'HTTPS', 'off'); 102 102 103 UBLogger::debug_var('UBHTTP::forwarded_proto', $forwarded_proto); 104 UBLogger::debug_var('UBHTTP::request_scheme', $request_scheme); 105 UBLogger::debug_var('UBHTTP::script_uri', $script_uri); 106 UBLogger::debug_var('UBHTTP::script_uri_scheme', $script_uri_scheme); 107 UBLogger::debug_var('UBHTTP::https', $https); 108 103 109 // X-Forwarded-Proto should be respected first, as it is what the end 104 110 // user will see (if Wordpress is behind a load balancer). … … 106 112 return $forwarded_proto . '://'; 107 113 } 114 // Wordpress' is_ssl() may return the correct boolean for http/https if 115 // the site was setup properly. 116 elseif($wp_is_ssl || !is_null($https) && $https !== 'off') { 117 return 'https://'; 118 } 108 119 // Next use REQUEST_SCHEME, if it is available. This is the recommended way 109 120 // to get the protocol, but it is not available on all hosts. … … 114 125 elseif(UBHTTP::is_valid_protocol($script_uri_scheme)) { 115 126 return $script_uri_scheme . '://'; 116 }117 // Wordpress' is_ssl() may return the correct boolean for http/https if118 // the site was setup properly.119 elseif($wp_is_ssl || !is_null($https) && $https !== 'off') {120 return 'https://';121 127 } 122 128 // We default to http as most HTTPS sites will also have HTTP available. -
unbounce/trunk/Unbounce-Page.php
r1445981 r1456529 4 4 Plugin URI: http://unbounce.com 5 5 Description: Unbounce is the most powerful standalone landing page builder available. 6 Version: 1.0.2 36 Version: 1.0.24 7 7 Author: Unbounce 8 8 Author URI: http://unbounce.com -
unbounce/trunk/readme.txt
r1445981 r1456529 3 3 Tags: Unbounce, AB testing, A/B testing, split testing, CRO, conversion optimization, wordpress landing page, wp landing pages, splash pages, landing pages, squeeze pages, lead gen, lead generation, email list, responsive landing pages, templates, inbound marketing, ppc, analytics 4 4 Requires at least: 4.1.5 5 Tested up to: 4. 46 Stable tag: 1.0.2 35 Tested up to: 4.5.3 6 Stable tag: 1.0.24 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 == Changelog == 91 91 92 = 1.0.24= 93 * Improves support for installations using SSL 94 * is_ssl() has higher precedence for determing protocol of content to serve 95 92 96 = 1.0.23 = 93 97 * Add optional support for web servers with a load balancer or proxy that is on a different network -
unbounce/trunk/templates/main_authorized_footer.php
r1445981 r1456529 19 19 </a> 20 20 <br/><a class="ub-diagnostics-link" href="<?php echo $diagnostics_url ?>">Click here for troubleshooting and plugin diagnostics</a> 21 <p class="ub-version">Unbounce Version 1.0.2 3</p>21 <p class="ub-version">Unbounce Version 1.0.24</p> -
unbounce/trunk/templates/main_unauthorized_footer.php
r1445981 r1456529 5 5 Click here for troubleshooting and plugin diagnostics 6 6 </a> 7 <p class="ub-version">Unbounce Version 1.0.2 3</p>7 <p class="ub-version">Unbounce Version 1.0.24</p>
Note: See TracChangeset
for help on using the changeset viewer.