diff options
author | 3D-I <480857+3D-I@users.noreply.github.com> | 2020-01-01 00:33:59 +0100 |
---|---|---|
committer | 3D-I <480857+3D-I@users.noreply.github.com> | 2020-01-01 00:34:05 +0100 |
commit | 7e5d0b9ec8568ea12bb2d8ef7fc7501ed17dce99 (patch) | |
tree | b6c981e123a87edff9f5a51eacd49401e42bf2e8 /phpBB/adm/style | |
parent | 314dfb294a210524783ee11d653f7c737bc46f15 (diff) | |
download | forums-7e5d0b9ec8568ea12bb2d8ef7fc7501ed17dce99.tar forums-7e5d0b9ec8568ea12bb2d8ef7fc7501ed17dce99.tar.gz forums-7e5d0b9ec8568ea12bb2d8ef7fc7501ed17dce99.tar.bz2 forums-7e5d0b9ec8568ea12bb2d8ef7fc7501ed17dce99.tar.xz forums-7e5d0b9ec8568ea12bb2d8ef7fc7501ed17dce99.zip |
[ticket/16281] Fix Ajax refresh-data for extensions' Tab
PHPBB3-16281
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/acp_ext_actions.html | 7 |
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 %} | {% 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 %} | {% 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 %} | {% 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 %} | {% endif %} +{% endfor %} |