#3810 closed defect (bug) (duplicate)
Wrong quotation mark after bracket
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 2.1.1 |
Component: | Formatting | Keywords: | |
Focuses: | Cc: |
Description
formatting.php sets a closing quotation mark after a bracket, even at the beginning of words. Example:
A dog ("Hubertus") was sent out.
The first quotation mark will not be formatted properly. This looks especially ugly when using the intypo plugin.
Solution: In formatting.php, replace the line
$dynamic_characters = array('/\'(\d\d(?:’|\')?s)/', '/(\s|\A|")\'/', '/(\d+)"/', '/(\d+)\'/', '/(\S)\'([\'\s])/', '/(\s|\A)"(?!\s)/', '/"(\s|\S|\Z)/', '/\'([\s.]|\Z)/', '/(\d+)x(\d+)/');
with
$dynamic_characters = array('/\'(\d\d(?:’|\')?s)/', '/(\s|\A|")\'/', '/(\d+)"/', '/(\d+)\'/', '/(\S)\'([\'\s])/', '/(\s|\A|\s\(|\A\()"(?!\s)/', '/"(\s|\S|\Z)/', '/\'([\s.]|\Z)/', '/(\d+)x(\d+)/');
Attachments (2)
Change History (21)
#8
@
16 years ago
- Milestone changed from 2.9 to 2.8
I've refreshed the patch on this. Shifting to 2.8 since it has a patch and has been languishing.
It'd suggest it either goes in or is closed.
#11
@
16 years ago
- Milestone changed from 2.8 to 2.9
Maybe wontfix, yeah. it's been open and ignored for so long... :D
Maybe someone who shows up with a full load of tests with results might convince devs to commit, though.
#13
@
16 years ago
- Milestone changed from 2.8 to Future Release
Partial duplicate of #8775, perhaps better to merge them.
#14
@
16 years ago
- Keywords needs-unit-tests added
Let's worry about merging all of the formatting tickets after 2.8. They've been open for so long that it doesn't matter much if it gets fixed now or then.
Punting pending unit-tests.
This solution is a whole lot better yet (covers all expressions where the delimiting blank does not immediately precede or follow the quotation mark):
$dynamic_characters = array('/\'(\d\d(?:’|\')?s)/', '/(\s|\A|")\'/', '/(\d+)"/', '/(\d+)\'/', '/(\S)\'([\'\s])/', '/(\s|\A|\s\S|\A\S)"(?!(\s|\A|\S\s|\S\A))/', '/"(\s|\S|\Z)/', '/\'([\s.]|\Z)/', '/(\d+)x(\d+)/');
Currently,
<p>A dog named "<a href="http://...">Hubertus</a>":</p>
results in the second quotation mark turning the wrong way. This is fixed by the solution shown above. (Of course, it also covers the bracket problem.)