Skip to content

Commit

Permalink
Migrate from EE 8 to EE 9 in Jelly views (#752)
Browse files Browse the repository at this point in the history
  • Loading branch information
basil authored Feb 5, 2025
1 parent 6c5e019 commit 8bccbc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ THE SOFTWARE.
-->
<?jelly escape-by-default='true'?>
<j:jelly xmlns:j="jelly:core" xmlns:f="/lib/form" xmlns:l="/lib/layout">
<j:set var="resource" value="${request.getParameter('resource')}"/>
<j:set var="resource" value="${request2.getParameter('resource')}"/>
<j:set var="resourceObject" value="${it.getResource(resource)}"/>
<j:set var="note" value="${resourceObject.note}"/>
<l:ajax>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ THE SOFTWARE.
<j:invoke var="buildClass" on="${currentThread.contextClassLoader}" method="loadClass">
<j:arg value="hudson.model.Run" />
</j:invoke>
<j:set var="build" value="${request.findAncestorObject(buildClass)}" />
<j:set var="build" value="${request2.findAncestorObject(buildClass)}" />
<st:include page="sidepanel.jelly" it="${build}" />
<!-- main panel -->
<l:main-panel>
Expand Down

0 comments on commit 8bccbc5

Please sign in to comment.