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/includes | |
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/includes')
-rw-r--r-- | phpBB/includes/acp/acp_extensions.php | 27 |
1 files changed, 12 insertions, 15 deletions
diff --git a/phpBB/includes/acp/acp_extensions.php b/phpBB/includes/acp/acp_extensions.php index b02d9710c0..86966541be 100644 --- a/phpBB/includes/acp/acp_extensions.php +++ b/phpBB/includes/acp/acp_extensions.php @@ -246,11 +246,10 @@ class acp_extensions $data = [ 'EXT_ENABLE_SUCCESS' => true, 'ACTIONS' => $actions, - ]; - - $data['REFRESH_DATA'] = [ - 'url' => '', - 'time' => 0, + 'REFRESH_DATA' => [ + 'url' => '', + 'time' => 0, + ], ]; $json_response = new \phpbb\json_response; @@ -310,11 +309,10 @@ class acp_extensions $data = [ 'EXT_DISABLE_SUCCESS' => true, 'ACTIONS' => $actions, - ]; - - $data['REFRESH_DATA'] = [ - 'url' => '', - 'time' => 0, + 'REFRESH_DATA' => [ + 'url' => '', + 'time' => 0, + ], ]; $json_response = new \phpbb\json_response; @@ -380,11 +378,10 @@ class acp_extensions $data = [ 'EXT_DELETE_DATA_SUCCESS' => true, 'ACTIONS' => $actions, - ]; - - $data['REFRESH_DATA'] = [ - 'url' => '', - 'time' => 0, + 'REFRESH_DATA' => [ + 'url' => '', + 'time' => 0, + ], ]; $json_response = new \phpbb\json_response; |