Version Description
- Sortable columns for users listing on multisite/network
Download this release
Release Info
Developer | Alphawolf |
Plugin | Reveal IDs |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5.0 to 1.5.1
- readme.txt +3 -0
- reveal-ids-for-wp-admin-25.php +3 -3
readme.txt
CHANGED
@@ -54,6 +54,9 @@ None.
|
|
54 |
|
55 |
== Changelog ==
|
56 |
|
|
|
|
|
|
|
57 |
= 1.5.0 =
|
58 |
* Full support for multisite
|
59 |
* Code cleanup
|
54 |
|
55 |
== Changelog ==
|
56 |
|
57 |
+
= 1.5.1 =
|
58 |
+
* Sortable columns for users listing on multisite/network
|
59 |
+
|
60 |
= 1.5.0 =
|
61 |
* Full support for multisite
|
62 |
* Code cleanup
|
reveal-ids-for-wp-admin-25.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Reveal IDs
|
4 |
-
Version: 1.5.
|
5 |
Plugin URI: https://www.schloebe.de/wordpress/reveal-ids-for-wp-admin-25-plugin/
|
6 |
Description: Reveals hidden IDs in Admin interface that have been removed with WordPress 2.5 (formerly known as Entry IDs in Manage Posts/Pages View for WP 2.5). See <a href="options-general.php?page=reveal-ids-for-wp-admin-25/reveal-ids-for-wp-admin-25.php">options page</a> for information.
|
7 |
Author: Oliver Schlöbe
|
@@ -37,7 +37,7 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
37 |
/**
|
38 |
* Define the plugin version
|
39 |
*/
|
40 |
-
define("RIDWPA_VERSION", "1.5.
|
41 |
|
42 |
/**
|
43 |
* Define the plugin path slug
|
@@ -162,6 +162,7 @@ class RevealIDsForWPAdmin {
|
|
162 |
if( version_compare($GLOBALS['wp_version'], '3.0.999', '>') ) {
|
163 |
add_action('manage_users-network_columns', array(&$this, 'column_add'));
|
164 |
add_filter("manage_users_sortable_columns", array(&$this, 'column_add_clean') );
|
|
|
165 |
}
|
166 |
|
167 |
add_action('manage_edit-comments_columns', array(&$this, 'column_add'));
|
@@ -170,7 +171,6 @@ class RevealIDsForWPAdmin {
|
|
170 |
add_filter("manage_edit-comments_sortable_columns", array(&$this, 'column_add_clean') );
|
171 |
|
172 |
if( version_compare($GLOBALS['wp_version'], '3.0.999', '>') ) {
|
173 |
-
add_action('manage_users-network_columns', array(&$this, 'column_add'));
|
174 |
add_action('manage_sites-network_columns', array(&$this, 'column_add'));
|
175 |
add_filter('manage_sites_custom_column', array(&$this, 'column_value'), 10, 3);
|
176 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Reveal IDs
|
4 |
+
Version: 1.5.1
|
5 |
Plugin URI: https://www.schloebe.de/wordpress/reveal-ids-for-wp-admin-25-plugin/
|
6 |
Description: Reveals hidden IDs in Admin interface that have been removed with WordPress 2.5 (formerly known as Entry IDs in Manage Posts/Pages View for WP 2.5). See <a href="options-general.php?page=reveal-ids-for-wp-admin-25/reveal-ids-for-wp-admin-25.php">options page</a> for information.
|
7 |
Author: Oliver Schlöbe
|
37 |
/**
|
38 |
* Define the plugin version
|
39 |
*/
|
40 |
+
define("RIDWPA_VERSION", "1.5.1");
|
41 |
|
42 |
/**
|
43 |
* Define the plugin path slug
|
162 |
if( version_compare($GLOBALS['wp_version'], '3.0.999', '>') ) {
|
163 |
add_action('manage_users-network_columns', array(&$this, 'column_add'));
|
164 |
add_filter("manage_users_sortable_columns", array(&$this, 'column_add_clean') );
|
165 |
+
add_filter("manage_users-network_sortable_columns", array(&$this, 'column_add_clean') );
|
166 |
}
|
167 |
|
168 |
add_action('manage_edit-comments_columns', array(&$this, 'column_add'));
|
171 |
add_filter("manage_edit-comments_sortable_columns", array(&$this, 'column_add_clean') );
|
172 |
|
173 |
if( version_compare($GLOBALS['wp_version'], '3.0.999', '>') ) {
|
|
|
174 |
add_action('manage_sites-network_columns', array(&$this, 'column_add'));
|
175 |
add_filter('manage_sites_custom_column', array(&$this, 'column_value'), 10, 3);
|
176 |
}
|