phpmyadmin/resources/templates/javascript/redirect.twig
Maurício Meneghini Fauth 98b3eda545
Remove ResponseRenderer::disable from UrlRedirector class
Creates a new Response object instead of using the response from
ResponseRenderer class.

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2024-05-03 18:04:02 -03:00

7 lines
154 B
Twig

<script>
window.onload = function () {
window.location = '{{ url|escape('js') }}';
};
</script>
{{ t('Taking you to the target site.') }}