From 2a48bc009d30c07a5bce188ddd7041e64f9a2e8a Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Tue, 30 Jun 2009 08:45:19 -0300 Subject: [PATCH] Respect xml_rootobj when restoring a full backup --- usr/local/www/diag_backup.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/usr/local/www/diag_backup.php b/usr/local/www/diag_backup.php index 2470be4251..5d03185d86 100755 --- a/usr/local/www/diag_backup.php +++ b/usr/local/www/diag_backup.php @@ -263,8 +263,8 @@ if ($_POST) { $savemsg = "The configuration area has been restored. You may need to reboot the firewall."; } } else { - if(!stristr($data, "")) { - $input_errors[] = "You have selected to restore the full configuration but we could not locate a pfsense tag."; + if(!stristr($data, $g['xml_rootobj'])) { + $input_errors[] = "You have selected to restore the full configuration but we could not locate a " . $g['xml_rootobj'] . " tag."; } else { /* restore the entire configuration */ file_put_contents($_FILES['conffile']['tmp_name'], $data); @@ -548,4 +548,4 @@ if($reboot_needed == true) { exit; } -?> \ No newline at end of file +?>