#20018 closed defect (bug) (fixed)
Typo in new wptexturize() pattern
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.4 |
| Component: | Formatting | Version: | |
| Severity: | normal | Keywords: | |
| Cc: | nacin |
Description
In r19795, the following:
$dynamic[ '/\'([\s.]|\Z)/' ] = $closing_single_quote . '$2'; // closing single quote
should instead be:
$dynamic[ '/\'([\s.]|\Z)/' ] = $closing_single_quote . '$1'; // closing single quote
The former removes the space from after the new pretty single quote
Change History (4)
Note: See
TracTickets for help on using
tickets.
In [19907]: