Skip to content

Commit bcd277d

Browse files
committed
Migrate from @deprecated textLink() static methods to direct use of LinkBuilder
SVN r64410 |2019-09-02 14:38:47 +0000
1 parent 2fc1ad0 commit bcd277d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

laboratory/src/org/labkey/laboratory/query/EnterResultsDisplayColumn.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ public void renderGridCellContents(RenderContext ctx, Writer out) throws IOExcep
6363
{
6464
props = Collections.emptyMap();
6565
}
66-
out.write(PageFlowUtil.textLink(value.toString(), url, null, null, props));
66+
out.write(PageFlowUtil.link(value.toString()).href(url).attributes(props).toString());
6767
}
6868
}
6969

0 commit comments

Comments
 (0)