Simple Login Log - Version 1.1.3

Version Description

Download this release

Release Info

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

Code changes from version 1.1.2 to 1.1.3

Files changed (2) hide show
  1. readme.txt +4 -1
  2. simple-login-log.php +1 -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: 4.7.5
7
- Stable tag: 1.1.2
8
 
9
  This plugin keeps a log of WordPress user logins. Offers user and date filtering, and export features.
10
 
@@ -49,6 +49,9 @@ Screen Options are available at the top of the Login Log page. Click on the *Scr
49
 
50
  == Changelog ==
51
 
 
 
 
52
  **Version 1.1.2**
53
 
54
  - Fixed: logins were not recorded due to (multiple) agent roles assigned to the same user a longer than 30 characters.
4
  Tags: login, log, users
5
  Requires at least: 3.0
6
  Tested up to: 4.7.5
7
+ Stable tag: 1.1.3
8
 
9
  This plugin keeps a log of WordPress user logins. Offers user and date filtering, and export features.
10
 
49
 
50
  == Changelog ==
51
 
52
+ **Version 1.1.3**
53
+ - Minor fix.
54
+
55
  **Version 1.1.2**
56
 
57
  - Fixed: logins were not recorded due to (multiple) agent roles assigned to the same user a longer than 30 characters.
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: 1.1.2
8
  Author URI: http://SimpleRealtyTheme.com
9
  */
10
 
@@ -565,7 +565,6 @@ if( !class_exists( 'SimpleLoginLog' ) )
565
  $where = ' WHERE ' . implode(' AND ', $where);
566
 
567
  $sql = "SELECT * FROM $this->table" . $where . " ORDER BY {$orderby} {$order} " . 'LIMIT ' . $limit . ' OFFSET ' . $offset;
568
- var_dump($sql);
569
 
570
  $data = $wpdb->get_results($sql, 'ARRAY_A');
571
 
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: 1.1.3
8
  Author URI: http://SimpleRealtyTheme.com
9
  */
10
 
565
  $where = ' WHERE ' . implode(' AND ', $where);
566
 
567
  $sql = "SELECT * FROM $this->table" . $where . " ORDER BY {$orderby} {$order} " . 'LIMIT ' . $limit . ' OFFSET ' . $offset;
 
568
 
569
  $data = $wpdb->get_results($sql, 'ARRAY_A');
570