#6544 closed defect (bug) (fixed)
TinyMCE HTTPS handling
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2.5.1 | Priority: | normal |
Severity: | normal | Version: | 2.5 |
Component: | TinyMCE | Keywords: | tinymce https has-patch |
Focuses: | Cc: |
Description
In /wp-includes/js/tiny_mce/tiny_mce_config.php, line 52 should read:
if ( $https ) $baseurl = str_replace('http://', 'https://', $baseurl);
and line 56 should read:
if ( $https ) $mce_css = str_replace('http://', 'https://', $mce_css);
At present (2.5) the replaced string is not being assigned, so when using HTTPS (with, for example, the admin-ssl plugin) the TinyMCE CSS files are being called using HTTP.
Attachments (2)
Change History (11)
#2
@
17 years ago
- Keywords has-patch added
- Milestone set to 2.6
- Severity changed from blocker to normal
#6
@
17 years ago
- Milestone changed from 2.5.1 to 2.6
It was fixed in trunk.
Maybe backport it to 2.5.1?
#7
@
17 years ago
- Milestone changed from 2.6 to 2.5.1
- Resolution fixed deleted
- Status changed from closed to reopened
Yes - please backport to 2.5.1. My company requires the use of HTTPS for sites requiring login, so this a maintenance hassle for me as the admin :-/
(not sure if I'm breaking protocol by changing the milestone and re-opening - if so, my apologies!)
Thanks!
This ticket was mentioned in PR #6558 on WordPress/wordpress-develop by @szepe.viktor.
10 months ago
#9
- Keywords changed from tinymce, https has-patch to tinymce https has-patch
Patch attached, based on the given code snippets.
Also a candidate for 2.5.1.