--- lib/Crypt/pgp.php Fri Jan 17 23:16:00 2003 +++ lib/Crypt/pgp.php Mon Feb 17 13:44:17 2003 @@ -130,7 +130,7 @@ /* Store the location of GnuPG and set common options. */ if (array_key_exists('program', $params)) { - $this->_gnupg = $params['program'] . ' --no-verbose --no-tty --no-secmem-warning --no-options --no-default-keyring --quiet --yes --homedir ' . $this->_tempdir . ' '; + $this->_gnupg = 'LANG= ; '. $params['program'] . ' --no-verbose --no-tty --no-secmem-warning --no-options --no-default-keyring --quiet --yes --homedir ' . $this->_tempdir . ' '; } else { Horde::fatal(new PEAR_Error(_("The location of the GnuPG binary must be given to the Crypt_pgp:: class.")), __FILE__, __LINE__); }