Changes between Initial Version and Version 1 of Ticket #21138

Timestamp:
07/02/12 17:45:52 (11 months ago)
Author:
nacin
Comment:

I found this when porting over the test_query.php unit tests:

// 'comments/page/?([0-9]{1,})/?$' => 'index.php?&paged=$matches[1]',
function test_comments_page() {
       $this->http('/comments/page/2/');
       $this->assertQueryTrue('is_home', 'is_paged');
}

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21138 – Description

    initial v1  
    11{{{ 
    2 [comments/feed/(feed|rdf|rss|rss2|atom)/?$] => index.php?&feed=$matches[1]&withcomments=1 
    3 [comments/(feed|rdf|rss|rss2|atom)/?$] => index.php?&feed=$matches[1]&withcomments=1 
    4 [comments/page/?([0-9]{1,})/?$] => index.php?&paged=$matches[1] 
     2[comments/feed/(feed|rdf|rss|rss2|atom)/?$] => 
     3    index.php?&feed=$matches[1]&withcomments=1 
     4 
     5[comments/(feed|rdf|rss|rss2|atom)/?$] => 
     6    index.php?&feed=$matches[1]&withcomments=1 
     7 
     8[comments/page/?([0-9]{1,})/?$] => 
     9    index.php?&paged=$matches[1] 
    510}}} 
    611