#57609 closed defect (bug) (fixed)
remove_accents function is ignoring Azerbeijan special charecter.
Reported by: | suleymankenar | Owned by: | audrasjb |
---|---|---|---|
Milestone: | 6.3 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Permalinks | Keywords: | good-first-bug has-patch commit |
Focuses: | Cc: |
Description
Hello,
As written in the title, remove_accents function does not have definition for Azerbeijan special charecter "Ə" and "ǝ" (U+018F). This is widely used letter in language, thus causing many problems.
Thanks
Change History (13)
#1
in reply to:
↑ description
@
22 months ago
#6
@
19 months ago
Looks like adding
'Ə' => 'E', 'ǝ' => 'e',
to remove_accents()
does the job correctly.
This ticket was mentioned in PR #4445 on WordPress/wordpress-develop by coditive-przemek-h.
19 months ago
#7
- Keywords has-patch added; needs-patch removed
It adds two missing Azerbeijan special characters to remove_accents function.
#8
@
19 months ago
I've added those two special characters in the mentioned PR. It should fix this issue.
This ticket was mentioned in PR #4449 on WordPress/wordpress-develop by coditive-przemek-h.
19 months ago
#9
It adds two missing Azerbeijan special characters to remove_accents function.
#10
@
19 months ago
- Owner set to audrasjb
- Status changed from new to accepted
The patch looks good to me. Self assigning for commit.
@audrasjb commented on PR #4449:
19 months ago
#13
committed in https://core.trac.wordpress.org/changeset/55858
Replying to suleymankenar:
By the way, correct replacement character for those is, "e", not "a" which might seem that way.