From: Ivan Kohler Date: Sun, 17 Nov 2013 23:55:30 +0000 (-0800) Subject: don't redirect to a GET with sensitive data, RT#26099 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=497c6d42bba8b650e495737fa8edb0fb6d1cb1b6;p=freeside.git don't redirect to a GET with sensitive data, RT#26099 --- diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index e6fbf92b6..a36256bc7 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -6,7 +6,7 @@ use vars qw( $AUTOLOAD @ISA @EXPORT_OK $DEBUG $conf $conf_encryption $money_char $lat_lower $lon_upper $me $nowarn_identical $nowarn_classload - $no_update_diff $no_check_foreign + $no_update_diff $no_history $no_check_foreign @encrypt_payby ); use Exporter; @@ -48,6 +48,7 @@ $me = '[FS::Record]'; $nowarn_identical = 0; $nowarn_classload = 0; $no_update_diff = 0; +$no_history = 0; $no_check_foreign = 0; my $rsa_module;