Correct searchpoint value for message-id in search and search msig across entire site
This commit is contained in:
parent
f56337b39a
commit
1d4c0ceda9
|
@ -306,11 +306,14 @@ function get_header_search($group, $terms) {
|
||||||
GLOBAL $CONFIG, $config_name, $spooldir, $snippet_size;
|
GLOBAL $CONFIG, $config_name, $spooldir, $snippet_size;
|
||||||
$terms = preg_replace('/\%/', '\%', $terms);
|
$terms = preg_replace('/\%/', '\%', $terms);
|
||||||
$searchterms = "%".$terms."%";
|
$searchterms = "%".$terms."%";
|
||||||
if(isset($_POST['group']) && $_POST['searchpoint'] != 'Message-ID') {
|
if(isset($_POST['group']) && $_POST['searchpoint'] != 'msgid') {
|
||||||
$grouplist[0] = $_POST['group'];
|
$grouplist[0] = $_POST['group'];
|
||||||
} else {
|
} elseif($_POST['searchpoint'] != 'msgid') {
|
||||||
$local_groupfile=$spooldir."/".$config_name."/local_groups.txt";
|
$local_groupfile=$spooldir."/".$config_name."/local_groups.txt";
|
||||||
$grouplist = file($local_groupfile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
$grouplist = file($local_groupfile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
||||||
|
} else {
|
||||||
|
$local_groupfile=$spooldir."/spoolnews/groups.txt";
|
||||||
|
$grouplist = file($local_groupfile, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
||||||
}
|
}
|
||||||
# Prepare search database
|
# Prepare search database
|
||||||
$database = $spooldir.'/articles-overview.db3';
|
$database = $spooldir.'/articles-overview.db3';
|
||||||
|
|
Loading…
Reference in New Issue