Ignore:
Timestamp:
05/06/16 20:53:39 (8 years ago)
Author:
nanardon
Message:

Don't manage entrance anymore in expiration warning

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LATMOS-Accounts/lib/LATMOS/Accounts/Maintenance.pm

    r1735 r1763  
    4242    my $sth= $base->db->prepare(q{ 
    4343        select name, 
    44             coalesce(endcircuit, expire) as appliedexpire, 
     44            expire as appliedexpire, 
    4545            endcircuit, 
    4646            expire 
    4747            from "user" 
    4848            where 
    49             coalesce(endcircuit, expire) < now() + ?::interval 
    50             and coalesce(endcircuit, expire) > now() 
    51             and coalesce(endcircuit, expire) is not null 
     49            expire < now() + ?::interval 
     50            and expire > now() 
     51            and expire is not null 
    5252            and exported = True 
    5353            order by expire 
Note: See TracChangeset for help on using the changeset viewer.