diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-08-12 10:46:40 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-08-12 10:46:40 -0300 |
commit | 185b9fbd5be84c62933ee7b3b6c45bb10ce7f661 (patch) | |
tree | fd3f5c881750ae379df2d4410d650bd996dcdb0b /usr | |
parent | c1d85ee19107c179ca5dc47b64484d62672f135b (diff) | |
download | pfsense-185b9fbd5be84c62933ee7b3b6c45bb10ce7f661.zip pfsense-185b9fbd5be84c62933ee7b3b6c45bb10ce7f661.tar.gz |
Add missing )
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/wizard.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/wizard.php b/usr/local/www/wizard.php index 4bf3735..720c277 100755 --- a/usr/local/www/wizard.php +++ b/usr/local/www/wizard.php @@ -62,13 +62,13 @@ if($_POST['xml']) if(empty($xml)) { $xml = "not_defined"; - print_info_box_np(sprintf(gettext("ERROR: Could not open %s."), $xml); + print_info_box_np(sprintf(gettext("ERROR: Could not open %s."), $xml)); die; } else { if (file_exists("{$g['www_path']}/wizards/{$xml}")) $pkg = parse_xml_config_pkg("{$g['www_path']}/wizards/" . $xml, "pfsensewizard"); else { - print_info_box_np(sprintf(gettext("ERROR: Could not open %s."), $xml); + print_info_box_np(sprintf(gettext("ERROR: Could not open %s."), $xml)); die; } } |