Opened 14 years ago
Closed 14 years ago
#9058 closed defect (bug) (fixed)
Unescaped single quote like character within a string
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 2.8 | Priority: | normal |
Severity: | normal | Version: | |
Component: | I18N | Keywords: | has-patch |
Focuses: | Cc: |
Description
This was first reported to the WP MU dev team (#886), but donncha suggested to submit this to the WP dev team. So here it is....
While translating WP MU poedit stumbled over an unescaped single quote-like character within a string. It can be found at line 3429 in wp-admin/includes/template.php
<snip>...a module you’ll notice...</snip>
It may remain unnoticed, but that will depend on your language-setting.
Solution is to change it into:
<snip>...a module you\'ll notice...</snip>
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
To be specific, this is a "smart quote" character. Should this be changed to a single quote, escaped, or should we be using the HTML entity for it ( ’ )?