addJSON('message', PMA_Message::error( __('An error has been detected and an error report has been ' .'automatically submitted based on your settings.') . '
' . __('You may want to refresh the page.'))); } else { $response->addJSON('message', PMA_Message::success( __('Thank you for submitting this report.') . '
' . __('You may want to refresh the page.'))); if($_REQUEST['always_send'] === "true") { PMA_persistOption("SendErrorReports", "always", "ask"); } } } elseif ($_REQUEST['get_settings']) { $response->addJSON('report_setting', $GLOBALS['cfg']['SendErrorReports']); } else { $response->addHTML(PMA_getErrorReportForm()); }