diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-30 08:41:57 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-30 08:41:57 -0300 |
commit | 28dd1a3e5c2468f176a011bebddde348c042c589 (patch) | |
tree | 27b224eace95dbf90b802c7f161a44d6e428cee8 /usr | |
parent | b94075a05413116c36bf61b8d9894610c681d378 (diff) | |
download | pfsense-28dd1a3e5c2468f176a011bebddde348c042c589.zip pfsense-28dd1a3e5c2468f176a011bebddde348c042c589.tar.gz |
Implement gettext() calls on exec_raw.php
Diffstat (limited to 'usr')
-rwxr-xr-x | usr/local/www/exec_raw.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/www/exec_raw.php b/usr/local/www/exec_raw.php index e18bfe0..c7beeae 100755 --- a/usr/local/www/exec_raw.php +++ b/usr/local/www/exec_raw.php @@ -44,7 +44,7 @@ include("guiconfig.inc"); putenv("PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin"); if($_REQUEST['cmd'] == "") { - echo "Nothing specified. Cannot continue."; + echo gettext("Nothing specified. Cannot continue."); exit; } passthru($_REQUEST['cmd']); |