aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/acp_ext_actions.html
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2020-01-01 17:43:43 +0100
committerMarc Alexander <admin@m-a-styles.de>2020-01-01 17:43:43 +0100
commit43e5337a0ad83e5146d3e322b4e119b65c4ac766 (patch)
tree55d69ae864cda3c695112790837beff4fba826b9 /phpBB/adm/style/acp_ext_actions.html
parent1ae812d172e3e3a2398476ca630cf7436434256b (diff)
parent7e5d0b9ec8568ea12bb2d8ef7fc7501ed17dce99 (diff)
downloadforums-43e5337a0ad83e5146d3e322b4e119b65c4ac766.tar
forums-43e5337a0ad83e5146d3e322b4e119b65c4ac766.tar.gz
forums-43e5337a0ad83e5146d3e322b4e119b65c4ac766.tar.bz2
forums-43e5337a0ad83e5146d3e322b4e119b65c4ac766.tar.xz
forums-43e5337a0ad83e5146d3e322b4e119b65c4ac766.zip
Merge pull request #5806 from 3D-I/ticket/16281
[ticket/16281] Fix Ajax refresh-data for extensions' Tab
Diffstat (limited to 'phpBB/adm/style/acp_ext_actions.html')
-rw-r--r--phpBB/adm/style/acp_ext_actions.html7
1 files changed, 4 insertions, 3 deletions
diff --git a/phpBB/adm/style/acp_ext_actions.html b/phpBB/adm/style/acp_ext_actions.html
index 6f2341f381..6b59ab7180 100644
--- a/phpBB/adm/style/acp_ext_actions.html
+++ b/phpBB/adm/style/acp_ext_actions.html
@@ -1,6 +1,7 @@
{% 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 }}" data-refresh="true">{{ 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 }}" data-refresh="true">{{ action.L_ACTION }}</a>{% if not action.S_LAST_ROW %}&nbsp;|&nbsp;{% endif %}
-{% endfor %} \ No newline at end of file
+ <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 %}