1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/12038] AJAXify move up/down buttons in the module management pages.

PHPBB3-12038
This commit is contained in:
Cesar G
2013-12-05 22:35:06 -08:00
parent 8d9cc63c19
commit d399d255b6
2 changed files with 10 additions and 2 deletions

View File

@@ -170,6 +170,14 @@ class acp_modules
$this->remove_cache_file();
}
if ($request->is_ajax())
{
$json_response = new \phpbb\json_response;
$json_response->send(array(
'success' => ($move_module_name !== false),
));
}
break;
case 'quickadd':