mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/10328] Renamed the JSON class, also now using autoloading.
It is no longer static, and uses autoloading. It has also been renamed from JSON to phpbb_json_response. PHPBB3-10328
This commit is contained in:
committed by
Igor Wiedler
parent
c92b30d66c
commit
7a933bdb5a
@@ -258,7 +258,8 @@ class acp_forums
|
||||
|
||||
if ($request->is_ajax())
|
||||
{
|
||||
JSON::send(array('success' => ($move_forum_name !== false)));
|
||||
$json_response = new phpbb_json_response;
|
||||
$json_response->send(array('success' => ($move_forum_name !== false)));
|
||||
}
|
||||
|
||||
break;
|
||||
|
Reference in New Issue
Block a user