Make WordPress Core

Changes between Version 2 and Version 3 of Ticket #20383, comment 26


Ignore:
Timestamp:
01/08/2018 02:56:06 PM (8 years ago)
Author:
adnan.limdi
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #20383, comment 26

    v2 v3  
    66
    77anyone have solutions for resolve this.
     8
     9i find this  in caonical.php so please provide here hook to change this
     10        $punctuation_pattern = implode( '|', array_map( 'preg_quote', array(
     11                ' ', '%20',  // space
     12                '!', '%21',  // exclamation mark
     13                '"', '%22',  // double quote
     14                "'", '%27',  // single quote
     15                '(', '%28',  // opening bracket
     16                ')', '%29',  // closing bracket
     17                ',', '%2C',  // comma
     18                ';', '%3B',  // semicolon
     19                '{', '%7B',  // opening curly bracket
     20                '}', '%7D',  // closing curly bracket
     21                '%E2%80%9C', // opening curly quote
     22                '%E2%80%9D', // closing curly quote
     23        ) ) );