aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2018-07-04 14:56:36 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-05-09 18:21:01 +0200
commit4da589acbacbc524a739b384e1392866784cf88d (patch)
tree365a56e2ab00b24bea4ff3b441f02b000636abfa
parent3e6fd7e8fd419ed999fe38ee48519dae98988081 (diff)
downloadforums-4da589acbacbc524a739b384e1392866784cf88d.tar
forums-4da589acbacbc524a739b384e1392866784cf88d.tar.gz
forums-4da589acbacbc524a739b384e1392866784cf88d.tar.bz2
forums-4da589acbacbc524a739b384e1392866784cf88d.tar.xz
forums-4da589acbacbc524a739b384e1392866784cf88d.zip
[ticket/15664] Add support for multi step processes
PHPBB3-15664
-rw-r--r--phpBB/adm/style/acp_ext_actions.html4
-rw-r--r--phpBB/adm/style/admin.js2
2 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/adm/style/acp_ext_actions.html b/phpBB/adm/style/acp_ext_actions.html
index b9c2febbe5..6f2341f381 100644
--- a/phpBB/adm/style/acp_ext_actions.html
+++ b/phpBB/adm/style/acp_ext_actions.html
@@ -1,6 +1,6 @@
{% for action in enabled.actions %}
-<a href="{{ action.U_ACTION }}"{% if action.L_ACTION_EXPLAIN %} title="{{ action.L_ACTION_EXPLAIN }}"{% endif %}{% if action.COLOR %} style="color: {{ action.COLOR }};"{% endif %} data-ajax="{{ action.ACTION_AJAX }}">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %}&nbsp;|&nbsp;{% endif %}
+<a href="{{ action.U_ACTION }}"{% if action.L_ACTION_EXPLAIN %} title="{{ action.L_ACTION_EXPLAIN }}"{% endif %}{% if action.COLOR %} style="color: {{ action.COLOR }};"{% endif %} data-ajax="{{ action.ACTION_AJAX }}" data-refresh="true">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %}&nbsp;|&nbsp;{% endif %}
{% endfor %}
{% for action in disabled.actions %}
-<a href="{{ action.U_ACTION }}"{% if action.L_ACTION_EXPLAIN %} title="{{ action.L_ACTION_EXPLAIN }}"{% endif %}{% if action.COLOR %} style="color: {{ action.COLOR }};"{% endif %} data-ajax="{{ action.ACTION_AJAX }}">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %}&nbsp;|&nbsp;{% endif %}
+<a href="{{ action.U_ACTION }}"{% if action.L_ACTION_EXPLAIN %} title="{{ action.L_ACTION_EXPLAIN }}"{% endif %}{% if action.COLOR %} style="color: {{ action.COLOR }};"{% endif %} data-ajax="{{ action.ACTION_AJAX }}" data-refresh="true">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %}&nbsp;|&nbsp;{% endif %}
{% endfor %} \ No newline at end of file
diff --git a/phpBB/adm/style/admin.js b/phpBB/adm/style/admin.js
index b7c25b7c86..5fdd07356c 100644
--- a/phpBB/adm/style/admin.js
+++ b/phpBB/adm/style/admin.js
@@ -258,7 +258,7 @@ function set_actions(container, actions) {
// ajaxify this action as well
phpbb.ajaxify({
selector: a,
- refresh: false,
+ refresh: true,
callback: actions[i].ACTION_AJAX
});