Actions
Feature #90336
closedCKeditor autolinking: Insert https instead of http
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
RTE (rtehtmlarea + ckeditor)
Target version:
-
Start date:
2020-02-06
Due date:
% Done:
100%
Estimated time:
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
If I type "www.test.com" into the editor, a link is created automatically:
<a href="http://www.test.com">www.test.com</a>
That's fine, but it's 2020 and https is more or less the standard protocol.
CKeditor should honor that by writing https in the href attribute.
Files
Updated by Florian Seirer almost 5 years ago
See line 111 in /typo3/sysext/rte_ckeditor/Resources/Public/JavaScript/Plugins/autolinking.js:
href = /^(?:https?:\/\/)/ig.test(href) ? href : 'http://' + href;
Updated by Florian Seirer almost 5 years ago
- File deleted (
https-autolinking.diff)
Updated by Florian Seirer almost 5 years ago
- File https-autolinking.diff https-autolinking.diff added
Updated by Gerrit Code Review over 3 years ago
- Status changed from Accepted to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/69923
Updated by Gerrit Code Review over 3 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at https://review.typo3.org/c/Packages/TYPO3.CMS/+/69923
Updated by Benni Mack over 3 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 8cff525a0d81031eb41878d0c549ee88442b225d.
Actions