Actions
Bug #775
closedcurrently a space can not be in the search term
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);
}
@
Updated by herrlado about 13 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