Version 1.54.1
Released: 2018-09-16
new
Table searching: case sensitivity and global choiceNew internal default (likely to be changed in the future):
table_case_sensitive_search=1
which can be changed to the following:
table_case_sensitive_search=0
by adding it to the directadmin.conf and restarting DA.
You can also add the following flag to any table search/sort (including "starts with", "contains" or the "equals" options)
&case_sensitive_search=1
or
&case_sensitive_search=0
to override whatever might be set in the directadmin.conf.
This can be useful if you might have a filename or some value in a table cell that shouldn't be case sensitively matched.
Or to fight with mobile phones that decide upper case is always the best, when:
autocapitalize='none'
has not been added to the input field.
IMPLEMENATATION
because we do not want to affect searching performance of the table class, I've implemented this using function pointers.
Case sensitivity choice is known ahead of time, so the function pointer for the actual string comparison is set once, and the function pointer is called directly per comparison.
This is as opposed to the slower method which would need an "if" statement check on the choice for every cell/search, which would be slower ("in theory")
fixed
Set Reseller Package segfaults/hangsBug introduced in 1.54.0 where the saving of a Reseller package can segfault or hang.