mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-07-31 01:34:09 +02:00
This parameter is being used to flag a request as form submission issued by utilizing an iframe. Appending it to a form's action causes no redirection to take place in case of successful submission and a reduced but still valid layout to be printed in any way. Redirection must be handled by the client regarding the meta tag "redirectUrl". refs #8758
10 lines
241 B
PHTML
10 lines
241 B
PHTML
<html>
|
|
<head>
|
|
<?php if (isset($this->layout()->redirectUrl)): ?>
|
|
<meta name="redirectUrl" content="<?= $this->layout()->redirectUrl; ?>">
|
|
<?php endif ?>
|
|
</head>
|
|
<body>
|
|
<?= $this->render('inline.phtml'); ?>
|
|
</body>
|
|
</html>
|