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);
}
@
Actions