- Timestamp:
- 2011-07-22T20:24:23+12:00 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/trunk/greenstone2/runtime-src/src/recpt/querytools.cpp
r24111 r24306 989 989 if (!tag.empty()) { 990 990 991 if (tag.size()>3 && (substr(tag.begin(), tag.begin()+3) == "ex.")) { 991 // remove "ex." prefix, but only if there are no other metadata set qualifiers 992 // in the metaname, since we want to retain prefixes like "ex.dc." as-is 993 text_t::iterator period = findchar(tag.begin(), tag.end(), '.'); 994 text_t::iterator lastperiod = findlastchar(tag.begin(), tag.end(), '.'); 995 996 if (tag.size()>3 && (substr(tag.begin(), tag.begin()+3) == "ex.") && period == lastperiod) { 992 997 tag = substr (tag.begin()+3, tag.end()); 993 998 }
Note:
See TracChangeset
for help on using the changeset viewer.