#20018 closed defect (bug) (fixed)
Typo in new wptexturize() pattern
Reported by: | danielbachhuber | Owned by: | nacin |
---|---|---|---|
Milestone: | 3.4 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Formatting | Keywords: | |
Focuses: | Cc: |
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]: