Changeset 3348592
- Timestamp:
- 08/22/2025 10:59:53 AM (7 months ago)
- Location:
- siteimprove
- Files:
-
- 6 edited
- 1 copied
-
tags/2.1.1 (copied) (copied from siteimprove/trunk)
-
tags/2.1.1/admin/class-siteimprove-admin.php (modified) (1 diff)
-
tags/2.1.1/readme.txt (modified) (1 diff)
-
tags/2.1.1/siteimprove.php (modified) (1 diff)
-
trunk/admin/class-siteimprove-admin.php (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
-
trunk/siteimprove.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
siteimprove/tags/2.1.1/admin/class-siteimprove-admin.php
r3331420 r3348592 285 285 // Apply public URL transformation if configured. 286 286 if ( ! empty( $public_url ) ) { 287 $url = "$public_url$path" . ( isset( $parsed_url['query'] ) ? "?$parsed_url[query]" : '' ); 287 $public_url = rtrim( $public_url, '/' ); 288 $normalized_path = '/' . ltrim( $path, '/' ); 289 $query_string = isset( $parsed_url['query'] ) ? '?' . $parsed_url['query'] : ''; 290 $url = $public_url . $normalized_path . $query_string; 288 291 } else { 289 292 // If no public URL is set, reconstruct the URL with the filtered path. -
siteimprove/tags/2.1.1/readme.txt
r3331420 r3348592 88 88 89 89 == Changelog == 90 = 2.1.1 = 91 * Bugfix - Ignore trailing slash in public url (prevents potential double slash when filtering first path parameter) 92 90 93 = 2.1.0 = 91 94 * Added - Ignore Path Segments setting to remove specific path segments when building public URLs -
siteimprove/tags/2.1.1/siteimprove.php
r3331420 r3348592 10 10 * Plugin URI: https://www.siteimprove.com/integrations/cms-plugin/wordpress/ 11 11 * Description: Integration with Siteimprove. 12 * Version: v2.1. 012 * Version: v2.1.1 13 13 * Author: Siteimprove 14 14 * Author URI: http://www.siteimprove.com/ -
siteimprove/trunk/admin/class-siteimprove-admin.php
r3331420 r3348592 285 285 // Apply public URL transformation if configured. 286 286 if ( ! empty( $public_url ) ) { 287 $url = "$public_url$path" . ( isset( $parsed_url['query'] ) ? "?$parsed_url[query]" : '' ); 287 $public_url = rtrim( $public_url, '/' ); 288 $normalized_path = '/' . ltrim( $path, '/' ); 289 $query_string = isset( $parsed_url['query'] ) ? '?' . $parsed_url['query'] : ''; 290 $url = $public_url . $normalized_path . $query_string; 288 291 } else { 289 292 // If no public URL is set, reconstruct the URL with the filtered path. -
siteimprove/trunk/readme.txt
r3331420 r3348592 88 88 89 89 == Changelog == 90 = 2.1.1 = 91 * Bugfix - Ignore trailing slash in public url (prevents potential double slash when filtering first path parameter) 92 90 93 = 2.1.0 = 91 94 * Added - Ignore Path Segments setting to remove specific path segments when building public URLs -
siteimprove/trunk/siteimprove.php
r3331420 r3348592 10 10 * Plugin URI: https://www.siteimprove.com/integrations/cms-plugin/wordpress/ 11 11 * Description: Integration with Siteimprove. 12 * Version: v2.1. 012 * Version: v2.1.1 13 13 * Author: Siteimprove 14 14 * Author URI: http://www.siteimprove.com/
Note: See TracChangeset
for help on using the changeset viewer.