Opened 18 years ago
Closed 17 years ago
#9058 closed defect (bug) (fixed)
Unescaped single quote like character within a string
| Reported by: | phsab | Owned by: | rmccue |
|---|---|---|---|
| Priority: | normal | Milestone: | 2.8 |
| Component: | I18N | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
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.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
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 ( ’ )?