Changeset 2570
- Timestamp:
- 04/22/2005 12:16:48 AM (20 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/index.php
r2471 r2570 40 40 if ($post->post_title == '') 41 41 $post->post_title = sprintf(__('Post #%s'), $post->ID); 42 echo "<li> <a href='post.php?action=edit&post=$post->ID' title='" . __('Edit this post') . "'>$post->post_title</a> in " . human_time_diff( current_time('timestamp', 1), strtotime($post->post_date_gmt. ' GMT')) . "</li>";42 echo "<li>" . sprintf(__('%1$s in %2$s'), "<a href='post.php?action=edit&post=$post->ID' title='" . __('Edit this post') . "'>$post->post_title</a>", human_time_diff( current_time('timestamp', 1), strtotime($post->post_date_gmt. ' GMT') )) . "</li>"; 43 43 } 44 44 ?> -
trunk/wp-admin/install.php
r2548 r2570 18 18 <html xmlns="http://www.w3.org/1999/xhtml"> 19 19 <head> 20 <title> WordPress › Installation</title>20 <title><?php _e('WordPress › Installation'); ?></title> 21 21 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 22 22 <style media="screen" type="text/css">
Note: See TracChangeset
for help on using the changeset viewer.