summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--wp-admin/wpmu-blogs.php2
-rw-r--r--wp-admin/wpmu-users.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/wp-admin/wpmu-blogs.php b/wp-admin/wpmu-blogs.php
index 44c40b2..14f7aaa 100644
--- a/wp-admin/wpmu-blogs.php
+++ b/wp-admin/wpmu-blogs.php
@@ -408,7 +408,7 @@ switch( $_GET['action'] ) {
<table width="100%" cellpadding="3" cellspacing="3" class="widefat">
<thead>
<tr>
- <th scope="col" class="check-column"><input type="checkbox" onclick="checkAll(document.getElementById('form-blog-list'));" /></th>
+ <th scope="col" class="check-column"></th>
<?php foreach($posts_columns as $column_id => $column_display_name) {
$column_link = "<a href='wpmu-blogs.php?{$sortby_url}&amp;sortby={$column_id}&amp;";
if( $_GET['sortby'] == $column_id ) {
diff --git a/wp-admin/wpmu-users.php b/wp-admin/wpmu-users.php
index e9eb719..a2bad03 100644
--- a/wp-admin/wpmu-users.php
+++ b/wp-admin/wpmu-users.php
@@ -130,7 +130,7 @@ if ( $_GET['updated'] == 'true' ) {
if( $column_id == 'blogs' ) {
echo '<th scope="col">'.__('Blogs').'</th>';
} elseif( $column_id == 'checkbox') {
- echo '<th scope="col" class="check-column"><input type="checkbox" onclick="checkAll(document.getElementById(\'form-user-list\'));" /></th>';
+ echo '<th scope="col" class="check-column"></th>';
} else { ?>
<th scope="col"><a href="wpmu-users.php?sortby=<?php echo $column_id ?>&amp;<?php if( $_GET['sortby'] == $column_id ) { if( $_GET['order'] == 'DESC' ) { echo "order=ASC&amp;" ; } else { echo "order=DESC&amp;"; } } ?>apage=<?php echo $apage ?>"><?php echo $column_display_name; ?></a></th>
<?php } ?>