Add valign, and formatting and i18n improvement.
git-svn-id: http://svn.automattic.com/wordpress/trunk@13665 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
95f0ba0623
commit
8064343648
|
@ -585,7 +585,7 @@ switch ( $action ) {
|
|||
<th scope="row" class="check-column">
|
||||
<input type='checkbox' id='blog_<?php echo $blog['blog_id'] ?>' name='allblogs[]' value='<?php echo esc_attr($blog['blog_id']) ?>' />
|
||||
</th>
|
||||
<th scope="row">
|
||||
<th valign="top" scope="row">
|
||||
<?php echo $blog['blog_id'] ?>
|
||||
</th>
|
||||
<?php
|
||||
|
@ -593,10 +593,10 @@ switch ( $action ) {
|
|||
|
||||
case 'blogname': ?>
|
||||
<td class="column-title">
|
||||
<a href="ms-sites.php?action=editblog&id=<?php echo $blog['blog_id'] ?>" class="edit"><?php echo $blogname; echo $blog_state?></a>
|
||||
<a href="ms-sites.php?action=editblog&id=<?php echo $blog['blog_id'] ?>" class="edit"><?php echo $blogname . $blog_state; ?></a>
|
||||
<?php
|
||||
if ( 'list' != $mode )
|
||||
echo '<p>' . get_blog_option( $blog['blog_id'], 'blogname' ) . '- <em>' . get_blog_option( $blog['blog_id'], 'blogdescription ' ) . '</em></p>';
|
||||
echo '<p>' . sprintf( _x( '%1$s – <em>%2$s', '%1$s: site name. %2$s: site tagline.' ), get_blog_option( $blog['blog_id'], 'blogname' ), get_blog_option( $blog['blog_id'], 'blogdescription ' ) ) . '</em></p>';
|
||||
|
||||
$actions = array();
|
||||
$actions[] = '<a href="ms-sites.php?action=editblog&id=' . $blog['blog_id'] . '" class="edit">' . __('Edit') . '</a>';
|
||||
|
|
Loading…
Reference in New Issue