diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-08-02 08:53:06 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-08-02 08:53:06 -0300 |
commit | a4f3afb36e4ec2b5fe3c3e686a18d03804f9fce8 (patch) | |
tree | 2915952eba82d89a7acc5d87b2a60681e24f3811 /usr/local/www/halt.php | |
parent | c0686139772b427734ed92654b28860e3cf84194 (diff) | |
download | pfsense-a4f3afb36e4ec2b5fe3c3e686a18d03804f9fce8.zip pfsense-a4f3afb36e4ec2b5fe3c3e686a18d03804f9fce8.tar.gz |
Fix gettext implementation on halt.php
Diffstat (limited to 'usr/local/www/halt.php')
-rwxr-xr-x | usr/local/www/halt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/halt.php b/usr/local/www/halt.php index a44d2e8..1bfda93 100755 --- a/usr/local/www/halt.php +++ b/usr/local/www/halt.php @@ -51,7 +51,7 @@ if ($_POST) { system_halt(); $rebootmsg = gettext("The system is halting now. This may take one minute."); } else { - header(gettext("Location: index.php")); + header("Location: index.php"); exit; } } |