mirror of
https://github.com/pfsense/pfsense.git
synced 2025-10-26 11:38:35 +00:00
Change output style to follow halt.php and reboot.php so the shutdown output appears in the correct location on the page.
This commit is contained in:
parent
5ee79d322a
commit
0acd271b3c
@ -44,15 +44,9 @@
|
||||
|
||||
require("guiconfig.inc");
|
||||
|
||||
if ($_POST) {
|
||||
if ($_POST['Submit'] != " No ") {
|
||||
reset_factory_defaults();
|
||||
system_reboot();
|
||||
$rebootmsg = gettext("The system has been reset to factory defaults and is now rebooting. This may take a few minutes, depending on your hardware.");
|
||||
} else {
|
||||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
if ($_POST['Submit'] == " " . gettext("No") . " ") {
|
||||
header("Location: index.php");
|
||||
exit;
|
||||
}
|
||||
|
||||
$pgtitle = array(gettext("Diagnostics"),gettext("Factory defaults"));
|
||||
@ -62,7 +56,16 @@ include("head.inc");
|
||||
|
||||
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
||||
<?php include("fbegin.inc"); ?>
|
||||
<?php if ($rebootmsg): echo print_info_box($rebootmsg); else: ?>
|
||||
|
||||
<?php if ($_POST['Submit'] == " " . gettext("Yes") . " "):
|
||||
print_info_box(gettext("The system has been reset to factory defaults and is now rebooting. This may take a few minutes, depending on your hardware.")); ?>
|
||||
<pre>
|
||||
<?php
|
||||
reset_factory_defaults();
|
||||
system_reboot();
|
||||
?>
|
||||
</pre>
|
||||
<?php else: ?>
|
||||
<form action="diag_defaults.php" method="post">
|
||||
<p><strong> <?=gettext("If you click") . " "" . gettext("Yes") . "", " . gettext("the firewall will:")?>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user