Make WordPress Core

Changeset 1314


Ignore:
Timestamp:
05/19/2004 05:59:21 AM (21 years ago)
Author:
saxmatt
Message:

Remove unused variable.

File:
1 edited

Legend:

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

    r1283 r1314  
    12761276    // Site feed
    12771277    $sitefeedmatch = 'feed/?([_0-9a-z-]+)?/?$';
    1278     $sitefeedquery = $site_root . 'wp-feed.php?feed=' . preg_index(1, $matches);
     1278    $sitefeedquery = 'wp-feed.php?feed=' . preg_index(1, $matches);
    12791279
    12801280    // Site comment feed
    12811281    $sitecommentfeedmatch = 'comments/feed/?([_0-9a-z-]+)?/?$';
    1282     $sitecommentfeedquery = $site_root . 'wp-feed.php?feed=' . preg_index(1, $matches) . '&withcomments=1';
     1282    $sitecommentfeedquery = 'wp-feed.php?feed=' . preg_index(1, $matches) . '&withcomments=1';
    12831283
    12841284    // Code for nice categories and authors, currently not very flexible
Note: See TracChangeset for help on using the changeset viewer.