summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2013-11-17 15:55:30 -0800
committerIvan Kohler <ivan@freeside.biz>2013-11-17 15:55:30 -0800
commit497c6d42bba8b650e495737fa8edb0fb6d1cb1b6 (patch)
treee5a8b34d4f7b6bc75a6f5404fd42df744a709853
parentbb2c4fd6f87c1bf47ca3fdbf7a2874179ec2673a (diff)
don't redirect to a GET with sensitive data, RT#26099
-rw-r--r--FS/FS/Record.pm3
1 files changed, 2 insertions, 1 deletions
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;