Gossamer Forum
Home : Products : Gossamer Mail : Discussion :

Re: [mcoyne] Admin search - sort by problem

Quote Reply
Re: [mcoyne] Admin search - sort by problem In reply to
On or about line 365 of admin/GT/SQL/Base.pm, you'll find this line:

Code:
$ret->{sb} = (defined $opt_r->{sb} and $opt_r->{sb} =~ /^([\w\s,]+)$/) ? $1 : '';

Changing it to the following (the only difference is adding the ., marked in red) will fix the problem:

Code:
$ret->{sb} = (defined $opt_r->{sb} and $opt_r->{sb} =~ /^([\w\s,.]+)$/) ? $1 : '';

Jason Rhinelander
Gossamer Threads
jason@gossamer-threads.com
Subject Author Views Date
Thread Admin search - sort by problem mcoyne 2891 May 19, 2003, 11:57 AM
Post Re: [mcoyne] Admin search - sort by problem
anup123 2762 May 19, 2003, 1:30 PM
Post Re: [mcoyne] Admin search - sort by problem
Jagerman 2698 Jul 8, 2003, 3:10 PM