Skip to content

Commit

Permalink
Merge branch 'release-v2.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
taija committed Apr 15, 2019
2 parents 28235a1 + ecaa2d8 commit 02b198b
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
3 changes: 0 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,4 @@ An example of this would be to easily grab a list of all 'Administrator' users i
3. Menu will appear under **Users** on the Network Admin Dashboard


## Disclaimer
This plugin is in an 'alpha' state, and still has many missing features and best practices in implimentation. Use entirely at your own risk.

Pull requests are very welcome!
2 changes: 1 addition & 1 deletion classes/Admin_Interface.php
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ public function render_options_page() {
<h2 class="nav-tab-wrapper">
<a href="?page=multisite_users_selected_role&tab=sort_by_user" class="nav-tab <?php echo $active_tab == 'sort_by_user' ? 'nav-tab-active' : ''; ?>">Sort By User</a>
<a href="?page=multisite_users_selected_role&tab=sort_by_site" class="nav-tab <?php echo $active_tab == 'sort_by_site' ? 'nav-tab-active' : ''; ?>">Sort By Site</a>
<a href="?page=multisite_users_selected_role&tab=emails" class="nav-tab <?php echo $active_tab == 'emails' ? 'nav-tab-active' : ''; ?>">Comma Separated Emails</a>
<a href="?page=multisite_users_selected_role&tab=emails" class="nav-tab <?php echo $active_tab == 'emails' ? 'nav-tab-active' : ''; ?>">Semicolon Separated Emails</a>
</h2>
</div>

Expand Down
6 changes: 3 additions & 3 deletions classes/User_List.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ public function email_output( ) {
<table class="mubr-table widefat fixed posts">
<thead>
<tr>
<th>Comma Separated Emails</th>
<th>Semicolon Separated Emails</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Comma Separated Emails</th>
<th>Semicolon Separated Emails</th>
</tr>
</tfoot>
<tbody>';
Expand All @@ -95,7 +95,7 @@ public function email_output( ) {
$count++;
$output .= $email;
if ($count != $email_count) {
$output .= ', ';
$output .= '; ';
}
}
$output .= '</textarea>';
Expand Down
2 changes: 1 addition & 1 deletion multisite-users-by-role.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Description: List all users with a certain role across a multisite network
Plugin URI: https://github.com/BellevueCollege/multisite-users-by-role/
Author: Taija Tevia-Clark
Version: 2
Version: 2.1
Author URI: http://www.bellevuecollege.edu
GitHub Plugin URI: BellevueCollege/multisite-users-by-role
Text Domain: mubr
Expand Down

0 comments on commit 02b198b

Please sign in to comment.