From 4bd2db1ca5a49a31b432e2e46492bd5aaed15641 Mon Sep 17 00:00:00 2001 From: westi Date: Tue, 7 Dec 2010 15:00:30 +0000 Subject: [PATCH] Use a span so we mark up the all the info about the site. See #15716 - allows for css targetting based on site. git-svn-id: http://svn.automattic.com/wordpress/trunk@16765 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/includes/class-wp-ms-users-list-table.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/wp-admin/includes/class-wp-ms-users-list-table.php b/wp-admin/includes/class-wp-ms-users-list-table.php index 70c9bad106..ff14c26c96 100644 --- a/wp-admin/includes/class-wp-ms-users-list-table.php +++ b/wp-admin/includes/class-wp-ms-users-list-table.php @@ -221,8 +221,9 @@ class WP_MS_Users_List_Table extends WP_List_Table { continue; $path = ( $val->path == '/' ) ? '' : $val->path; + echo ''; echo '' . str_replace( '.' . $current_site->domain, '', $val->domain . $path ) . ''; - echo ' '; + echo ' '; $actions = array(); $actions['edit'] = '' . __( 'Edit' ) . ''; @@ -247,7 +248,7 @@ class WP_MS_Users_List_Table extends WP_List_Table { ( $i == $action_count ) ? $sep = '' : $sep = ' | '; echo "$link$sep"; } - echo '
'; + echo '

'; } } ?>