Changes between Initial Version and Version 2 of Ticket #34591
- Timestamp:
- 11/06/2015 12:06:32 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #34591
- Property Keywords reporter-feedback added
-
Ticket #34591 – Description
initial v2 1 Current code in do_item()of class.wp-script.php on line 172:1 Current code in `do_item()` of class.wp-script.php on line 172: 2 2 3 3 {{{ … … 5 5 }}} 6 6 7 may produce duplicate slashes "//", resulting in problems.7 may produce duplicate slashes `"//"`, resulting in problems. 8 8 9 9 This might be fixed with code: … … 13 13 14 14 Currently: 15 * WP_Scripts contains: "public $base_url; // Full URL with trailing slash"and16 * script-loader.php contains calls $scripts->add() with initial "/"in relative paths15 * WP_Scripts contains: `"public $base_url; // Full URL with trailing slash"` and 16 * script-loader.php contains calls `$scripts->add()` with initial `"/"` in relative paths 17 17 18 Together this produces doubled slashes "//". For example:18 Together this produces doubled slashes `"//"`. For example: 19 19 http://www.ocelovehaly.cz/ll//wp-includes/js/jquery/jquery.js?ver=1.11.3 20 20