Make WordPress Core


Ignore:
Timestamp:
12/13/2011 11:45:31 PM (13 years ago)
Author:
ryan
Message:

Use one space, not two, after trailing punctuation. fixes #19537

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/rewrite.php

    r19322 r19593  
    11901190        foreach ( (array) $this->feeds as $feed_name)
    11911191            $feedregex2 .= $feed_name . '|';
    1192         $feedregex2 = '(' . trim($feedregex2, '|') .  ')/?$';
     1192        $feedregex2 = '(' . trim($feedregex2, '|') . ')/?$';
    11931193
    11941194        //$feedregex is identical but with /feed/ added on as well, so URLs like <permalink>/feed/atom
    11951195        //and <permalink>/atom are both possible
    1196         $feedregex = $this->feed_base  . '/' . $feedregex2;
     1196        $feedregex = $this->feed_base . '/' . $feedregex2;
    11971197
    11981198        //build a regex to match the trackback and page/xx parts of URLs
Note: See TracChangeset for help on using the changeset viewer.