Changeset 5615
- Timestamp:
- 05/31/2007 12:29:46 PM (19 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
wp-includes/post-template.php (modified) (1 diff)
-
wp-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/post-template.php
r5444 r5615 100 100 $output = balanceTags($output); 101 101 if ( ! empty($more_link_text) ) 102 $output .= ' <a href="' . get_permalink() . "#more-$id\" class=\"more-link\">$more_link_text</a>";102 $output .= ' <a href="' . get_permalink() . '#more-' . $id . '" class="morelink">' . $more_link_text . '</a>'; 103 103 } 104 104 -
trunk/wp-settings.php
r5606 r5615 148 148 $link = 'wp-admin/install.php'; 149 149 150 wp_die( sprintf( 151 __( 'It doesn’t look like you’ve installed WP yet. Try running <a href="%s">install.php</a>.' ), 152 $link 153 ) ); 150 wp_die( sprintf( 'It doesn’t look like you’ve installed WP yet. Try running <a href="%s">install.php</a>.', $link ) ); 154 151 } 155 152
Note: See TracChangeset
for help on using the changeset viewer.