Changeset 4264
- Timestamp:
- 10/02/2006 06:03:34 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
-
wp-admin/import/dotclear.php (modified) (1 diff)
-
wp-admin/import/textpattern.php (modified) (1 diff)
-
wp-content/themes/default/attachment.php (modified) (1 diff)
-
wp-content/themes/default/page.php (modified) (1 diff)
-
wp-content/themes/default/single.php (modified) (1 diff)
-
wp-includes/feed.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/import/dotclear.php
r4165 r4264 409 409 if($cat1 = get_catbynicename($post_cat_name)) { $cats[1] = $cat1; } 410 410 411 if(!empty($cats)) { wp_set_post_cat s('',$ret_id, $cats); }411 if(!empty($cats)) { wp_set_post_categories($ret_id, $cats); } 412 412 } 413 413 } -
trunk/wp-admin/import/textpattern.php
r4165 r4264 339 339 if($cat2 = get_catbynicename($Category2)) { $cats[2] = $cat2; } 340 340 341 if(!empty($cats)) { wp_set_post_cat s('',$ret_id, $cats); }341 if(!empty($cats)) { wp_set_post_categories($ret_id, $cats); } 342 342 } 343 343 } -
trunk/wp-content/themes/default/attachment.php
r4047 r4264 18 18 <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?> 19 19 20 <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>20 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> 21 21 22 22 <p class="postmetadata alt"> -
trunk/wp-content/themes/default/page.php
r4047 r4264 9 9 <?php the_content('<p class="serif">Read the rest of this page »</p>'); ?> 10 10 11 <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>11 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> 12 12 13 13 </div> -
trunk/wp-content/themes/default/single.php
r4047 r4264 16 16 <?php the_content('<p class="serif">Read the rest of this entry »</p>'); ?> 17 17 18 <?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>18 <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?> 19 19 20 20 <p class="postmetadata alt"> -
trunk/wp-includes/feed.php
r4257 r4264 103 103 $link = get_option('home') . '?feed=rss2&author=' . $author_id; 104 104 } else { 105 $link = get_author_ link(0,$author_id, $author_nicename);105 $link = get_author_posts_url($author_id, $author_nicename); 106 106 $link = $link . "feed/"; 107 107 }
Note: See TracChangeset
for help on using the changeset viewer.