From: Ivan Kohler Date: Sun, 17 Nov 2013 23:56:23 +0000 (-0800) Subject: don't redirect to a GET with sensitive data, RT#26099 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=736136102c6fc01fbc9d70358e6e457a09687944 don't redirect to a GET with sensitive data, RT#26099 --- diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index 80d829608..2c506ff0f 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; @@ -47,6 +47,7 @@ $me = '[FS::Record]'; $nowarn_identical = 0; $nowarn_classload = 0; $no_update_diff = 0; +$no_history = 0; $no_check_foreign = 0; my $rsa_module;