Simple Login Log - Version 0.9

Version Description

Download this release

Release Info

Developer maxchirkov
Plugin Icon wp plugin Simple Login Log
Version 0.9
Comparing to
See all releases

Code changes from version 0.8 to 0.9

Files changed (2) hide show
  1. readme.txt +5 -1
  2. simple-login-log.php +2 -2
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://www.ibsteam.net/donate
4
  Tags: login, log, users
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
- Stable tag: 0.8
8
 
9
  This plugin keeps a log of WordPress user logins. Offers user and date filtering, and export features.
10
 
@@ -40,6 +40,10 @@ Screen Options are available at the top of the Login Log page. Click on the *Sec
40
 
41
  == Changelog ==
42
 
 
 
 
 
43
  **Version 0.8**
44
 
45
  - Bug Fix: Columns' checkboxes weren't showing in Screen Options in WP 3.3.
4
  Tags: login, log, users
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
+ Stable tag: 0.9
8
 
9
  This plugin keeps a log of WordPress user logins. Offers user and date filtering, and export features.
10
 
40
 
41
  == Changelog ==
42
 
43
+ **Version 0.9**
44
+
45
+ - Changed access to the log for users with capability to "list_users".
46
+
47
  **Version 0.8**
48
 
49
  - Bug Fix: Columns' checkboxes weren't showing in Screen Options in WP 3.3.
simple-login-log.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin URI: http://simplerealtytheme.com
5
  Description: This plugin keeps a log of WordPress user logins. Offers user filtering and export features.
6
  Author: Max Chirkov
7
- Version: 0.8
8
  Author URI: http://SimpleRealtyTheme.com
9
  */
10
 
@@ -317,7 +317,7 @@ if( !class_exists( 'SimpleLoginLog' ) )
317
 
318
  function sll_admin_menu()
319
  {
320
- add_submenu_page( 'users.php', __('Simple Login Log', 'sll'), __('Login Log', 'sll'), 'edit_users', 'login_log', array(&$this, 'log_manager') );
321
  }
322
 
323
 
4
  Plugin URI: http://simplerealtytheme.com
5
  Description: This plugin keeps a log of WordPress user logins. Offers user filtering and export features.
6
  Author: Max Chirkov
7
+ Version: 0.9
8
  Author URI: http://SimpleRealtyTheme.com
9
  */
10
 
317
 
318
  function sll_admin_menu()
319
  {
320
+ add_submenu_page( 'users.php', __('Simple Login Log', 'sll'), __('Login Log', 'sll'), 'list_users', 'login_log', array(&$this, 'log_manager') );
321
  }
322
 
323