Opened 6 years ago

Closed 4 years ago

Last modified 4 years ago

#3810 closed defect (bug) (duplicate)

Wrong quotation mark after bracket

Reported by: josepo Owned by:
Priority: normal Milestone: 2.9
Component: Formatting Version: 2.1.1
Severity: normal Keywords:
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)

3810.diff (1.1 KB) - added by Nazgul 6 years ago.
formatting.diff (1.0 KB) - added by mrmist 4 years ago.
refreshed against 10257

Download all attachments as: .zip

Change History (20)

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.)

  • Milestone changed from 2.1.2 to 2.2
  • Version set to 2.1.1

Nazgul6 years ago

  • Keywords has-patch added

Patch based on given code snippet added.

  • Keywords 2nd-opinion needs-testing added
  • Milestone changed from 2.2 to 2.3
  • Milestone changed from 2.3 to 2.4
  • Milestone changed from 2.5 to 2.6

mrmist4 years ago

refreshed against 10257

  • 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.

See also #4539

  • Component changed from General to Formatting
  • Owner anonymous deleted
  • 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.

  • Keywords 2nd-opinion removed
  • Milestone changed from 2.9 to 2.8
  • Milestone changed from 2.8 to Future Release

Partial duplicate of #8775, perhaps better to merge them.

  • 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.

  • Milestone changed from Future Release to 2.9

+1 for merging

  • Resolution set to duplicate
  • Status changed from new to closed

Dupe of #1418.

I have added this explicit test case to wordpress-tests.

Fixed in [11813]

  • Keywords has-patch needs-testing needs-unit-tests removed
Note: See TracTickets for help on using tickets.