Unverified Commit 4531c72d authored by Côme Chilliet's avatar Côme Chilliet
Browse files

:ambulance: fix(management) Avoid export action to prevent other actions

Make sure "act" hidden field is empty after action has been done.

issue #6156
Showing with 1 addition and 1 deletion
+1 -1
......@@ -9,7 +9,7 @@
</a>
{menu data=$entry.actions level=$level+1}
{elseif $entry.enabled}
<a href="#" onClick="document.getElementById('actionmenu').value='{$entry.name|escape}';document.getElementById('exec_act').click();">
<a href="#" onClick="document.getElementById('actionmenu').value='{$entry.name|escape}';document.getElementById('exec_act').click();document.getElementById('actionmenu').value='';">
<img src="{$entry.icon|escape}" alt=""/>&nbsp;{$entry.label|escape}
</a>
{else}
......
Supports Markdown
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