Changeset 724


Ignore:
Timestamp:
06/17/16 18:06:24 (8 years ago)
Author:
Kris Deugau
Message:

/trunk

Slight tweak to record search field character stripping; allowing %
makes it much easier to find template records until the search can be
expanded with multikeyword support. See #57.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/dns.cgi

    r723 r724  
    18631863  # we do this for the domain and record list filter/search - it should be extremely rare to
    18641864  # need to search on characters outside this set until we get into IDNs
    1865   $webvar{searchfor} =~ s/[^a-zA-Z0-9_.:\@-]//g if $webvar{searchfor};
     1865  # note this is a little larger due to template records
     1866  $webvar{searchfor} =~ s/[^a-zA-Z0-9_.:\@%-]//g if $webvar{searchfor};
    18661867
    18671868  # save the search in the session, same as the "filter" in various other lists...
Note: See TracChangeset for help on using the changeset viewer.