2012-01-26, 06:51 AM
UJB, there seems to be a problem with Match Title/ Case Sensitive searching
I believe you need this logic near line 235 of SearchEngine.cs
Martin
I believe you need this logic near line 235 of SearchEngine.cs
Code:
//Check to see if we are matching the title
else if (matchTitle)
{
if (!caseSensitive)
{
where_cmd += " and UPPER(EPG_EVENT.title) = '" + searchFor + "'";
}
else
{
where_cmd += " and EPG_EVENT.title = '" + searchFor + "'";
}
}
Martin