Ok, think I may have cracked it:
I am running TTX version 3.01
Edit the file called TTXDesk.pm as follows
find:
if ($query->param('status') ne undef) {
my $f;
$f->{col} = 'status';
$f->{expr} = "^".$query->param('status')."\$";
push @filter, $f;
}
my $hideoldsolved;
if ($query->param('text') ne undef) {
add the code in green, remove the code in red:
my $hideoldsolved; if ($query->param('status') ne undef) {
my $f;
$f->{col} = 'status';
$f->{expr} = "^".$query->param('status')."\$";
$hideoldsolved = $cfg->set('hideoldsolved', ''); push @filter, $f;
}
my $hideoldsolved; if ($query->param('text') ne undef) {