Changeset 926


Ignore:
Timestamp:
07/12/19 12:25:55 (5 years ago)
Author:
Kris Deugau
Message:

/trunk

Commit inexplicably missing custID whitespace removal in allocateBlock()

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/cgi-bin/IPDB.pm

    r923 r926  
    15751575    $args{cidr} = new NetAddr::IP $args{cidr};
    15761576  }
     1577
     1578  # Spaces don't show up well in lots of places.  Make sure they don't get into the DB.
     1579  $args{custid} =~ s/^\s+//;
     1580  $args{custid} =~ s/\s+$//;
    15771581
    15781582  $args{desc} = $args{description} if $args{description};
Note: See TracChangeset for help on using the changeset viewer.