Project

General

Profile

Actions

Bug #775

closed

currently a space can not be in the search term

Added by herrlado over 12 years ago. Updated over 12 years ago.

Status:
Closed
Priority:
Normal
Assignee:
Target version:
Start date:
11/01/2011
Due date:
% Done:

0%

Estimated time:

Description

@string cHelpers::SearchEvents(string args) {

args = Trim(args);
string wantedChannels;
string pattern;
size_t space = args.find(' ');
if (space == string::npos) {//so only search term
pattern = args;
wantedChannels = "";
} else {
wantedChannels = args.substr(0, space);
pattern = args.substr(space+1);
}
@
Actions #1

Updated by herrlado over 12 years ago

It is only relevant if searchin in all channels, so with the command

search was ist los would find nothing but
search 1-1000 was ist los would find if contained

so the workaround would be if they would like to search with spaces to enter a channel filter.

Actions #2

Updated by herrlado over 12 years ago

Fixed localy

Actions #3

Updated by herrlado over 12 years ago

  • Status changed from New to Resolved
Actions #4

Updated by herrlado over 12 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF