Skip to content

Commit 79c5df3

Browse files
2 parents b384008 + 8518751 commit 79c5df3

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/cls/iKnowDoc/Search/SearchPages.cls

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ ClassMethod FormQuery(obj) As %Status
2828
// all these words:
2929
//set words=obj.words
3030
set words= $ZCONVERT(obj.words,"O","HTML")
31-
set words = $REPLACE(words,"é","é")
32-
set words = $REPLACE(words,"ñ","ñ")
31+
/*set words = $REPLACE(words,"é","é")
32+
set words = $REPLACE(words,"ñ","ñ")*/
3333
// this exact word or phrase:
3434
set phrase=obj.phrase
3535
// any of these words:
@@ -185,8 +185,8 @@ ClassMethod FormQuery(obj) As %Status
185185
while subresult.%Next() {
186186
if subresult.text'="" {
187187
set subtextKey = result.docKey_"#"_subresult.textKey
188-
//set textInfoJSON = {"text":(subresult.text), "textKey":(subtextKey)}
189-
set textInfoJSON = {"text":($ZCONVERT(subresult.text,"I","HTML")), "textKey":(subtextKey)}
188+
set textInfoJSON = {"text":(subresult.text), "textKey":(subtextKey)}
189+
//set textInfoJSON = {"text":($ZCONVERT(subresult.text,"I","HTML")), "textKey":(subtextKey)}
190190
do tJSON.textInfo.%Push(textInfoJSON)
191191
}
192192
}

0 commit comments

Comments
 (0)