Make WordPress Core


Ignore:
Timestamp:
12/22/2003 11:00:45 PM (23 years ago)
Author:
emc3
Message:

Fixed %post_id% token handling. Fixed pingback link detection.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-permalink.php

    r628 r640  
    105105        '%monthnum%',
    106106        '%day%',
    107         '%postname%'
     107        '%postname%',
     108        '%post_id%'
    108109);
    109110$rewritereplace = array(
     
    111112        '([0-9]{1,2})?',
    112113        '([0-9]{1,2})?',
    113         '([0-9a-z-]+)?'
     114        '([0-9a-z-]+)?',
     115        '([0-9]+)?'
    114116);
    115117$queryreplace = array (
     
    117119        'monthnum=',
    118120        'day=',
    119         'name='
     121        'name=',
     122        'p='
    120123);
    121124
Note: See TracChangeset for help on using the changeset viewer.