Changeset 1615
- Timestamp:
- 09/07/04 00:01:19 (4 years ago)
- Files:
-
- trunk/wp-includes/functions.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-includes/functions.php
r1603 r1615 1332 1332 1333 1333 if ($post) { 1334 $post_rewrite = array($trackbackmatch => $trackbackquery) + $post_rewrite; 1334 $post_rewrite = array($trackbackmatch =top 1335 > $trackbackquery) + $post_rewrite; 1335 1336 } 1336 1337 } … … 1443 1444 $rewrite = rewrite_rules('', $permalink_structure); 1444 1445 foreach ($rewrite as $match => $query) { 1446 // Apache 1.3 does not support the reluctant (non-greedy) modifier. 1447 $match = str_replace('.+?', '.+', $match); 1448 1445 1449 if (strstr($query, 'index.php')) { 1446 1450 $rules .= 'RewriteRule ^' . $match . ' ' . $home_root . $query . " [QSA]\n";
