Skip to content

Commit fd9bae8

Browse files
authored
Merge pull request #228 from Caltech-IPAC/DM-6617-fix-master-cat-parsing
DM-6617: fix parsing info link
2 parents fd2b7e2 + 1dc22a3 commit fd9bae8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firefly/java/edu/caltech/ipac/firefly/server/catquery/CatMasterTableQuery.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ private static String modifyToFullURL(String inStr, String targetStr) {
262262
int endAnchor= s.indexOf(">",start);
263263
if (targetStr!=null && endAnchor>0 && url!=null &&
264264
!s.substring(beginChar,endAnchor).contains("target=")) {
265-
String rStr= "\\Q" + beginChar+url+beginChar + "\\E";
265+
String rStr = beginChar + url + beginChar;
266266
retval= retval.replaceFirst(rStr, rStr+ " target="+"\""+targetStr+"\" ");
267267
}
268268
}

0 commit comments

Comments
 (0)