Changeset 22935
- Timestamp:
- 2010-09-21T18:45:30+12:00 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/greenstone2/runtime-src/src/recpt/querytools.cpp
r22046 r22935 26 26 #include "querytools.h" 27 27 #include <ctype.h> 28 #include "cgiutils.h" 28 29 #include "unitool.h" // for is_unicode_letdig 29 30 … … 663 664 text_t stem = args["fqs"]; 664 665 if (stem.empty()) return; // somethings wrong 666 stem = decode_commas(stem); // %2C -> , 665 667 splitchar(stem.begin(), stem.end(), ',', stems); 666 668 667 669 text_t fold = args["fqk"]; 668 670 if (fold.empty()) return; // somethings wrong 671 fold = decode_commas(fold); // %2C -> , 669 672 splitchar(fold.begin(), fold.end(), ',', folds); 670 673 }
Note:
See TracChangeset
for help on using the changeset viewer.