Commit e0ab5ae1 authored by Romain Courteaud's avatar Romain Courteaud

Fix mistake: parameter was not passed to the right method

git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@24230 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent fc8097b6
...@@ -95,7 +95,7 @@ for idx, report_section in enumerate(report_section_list):\n ...@@ -95,7 +95,7 @@ for idx, report_section in enumerate(report_section_list):\n
report_section_idx=idx,\n report_section_idx=idx,\n
request_other=request_other)\n request_other=request_other)\n
\n \n
portal.portal_simulation.activate(after_tag=tag).Base_report(\n portal.portal_simulation.activate(after_tag=tag, priority=priority).Base_report(\n
active_process_url=active_process.getRelativeUrl(),\n active_process_url=active_process.getRelativeUrl(),\n
skin_name=skin_name,\n skin_name=skin_name,\n
localizer_language=localizer_language,\n localizer_language=localizer_language,\n
...@@ -103,7 +103,6 @@ portal.portal_simulation.activate(after_tag=tag).Base_report(\n ...@@ -103,7 +103,6 @@ portal.portal_simulation.activate(after_tag=tag).Base_report(\n
request_other=request_other,\n request_other=request_other,\n
form_path=form.getPhysicalPath(),\n form_path=form.getPhysicalPath(),\n
user_name=user_name,\n user_name=user_name,\n
priority=priority,\n
)\n )\n
\n \n
context.activate(after_tag=tag).getTitle()\n context.activate(after_tag=tag).getTitle()\n
......
22 23
\ No newline at end of file \ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment