/[drupal]/contributions/modules/troll/troll.module
ViewVC logotype

Diff of /contributions/modules/troll/troll.module

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph | View Patch Patch

revision 1.26.2.11.2.7, Sat Jun 13 02:55:13 2009 UTC revision 1.26.2.11.2.8, Fri Jun 19 13:36:04 2009 UTC
# Line 1  Line 1 
1  <?php  <?php
2  // $Id: troll.module,v 1.26.2.11.2.6 2009/04/10 14:56:04 deekayen Exp $  // $Id: troll.module,v 1.26.2.11.2.7 2009/06/13 02:55:13 deekayen Exp $
3    
4  /**  /**
5   * @file   * @file
# Line 1088  function troll_list_users($edit) { Line 1088  function troll_list_users($edit) {
1088    }    }
1089    if (!empty($edit['date_created'])) {    if (!empty($edit['date_created'])) {
1090      $where[] = "u.created > %d ";      $where[] = "u.created > %d ";
1091      $args[] = drupal_strtotime($edit['date_created']);      $args[] = strtotime($edit['date_created']);
1092    }    }
1093    
1094    $sql = "SELECT u.uid, u.name, u.mail, u.status, t.ip_address, MAX(t.accessed) AS recorded, u.created FROM {users} u LEFT JOIN {troll_ip_track} t ON u.uid = t.uid";    $sql = "SELECT u.uid, u.name, u.mail, u.status, t.ip_address, MAX(t.accessed) AS recorded, u.created FROM {users} u LEFT JOIN {troll_ip_track} t ON u.uid = t.uid";

Legend:
Removed from v.1.26.2.11.2.7  
changed lines
  Added in v.1.26.2.11.2.8

  ViewVC Help
Powered by ViewVC 1.1.2