summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkhoff <khoff>2005-03-30 21:40:06 +0000
committerkhoff <khoff>2005-03-30 21:40:06 +0000
commit3fee5d65aa1c555c53a991e9a9f9610b422670fe (patch)
treefcf37c170c0949fbbd0bfc13d5103e4fde61d513
parent14783ddd1917b67292711ce6f7443f46f1af02e6 (diff)
Dump a call trace if something calls FS::h_Common::sql_h_search without END_TIMESTAMP.
-rw-r--r--FS/FS/h_Common.pm5
1 files changed, 5 insertions, 0 deletions
diff --git a/FS/FS/h_Common.pm b/FS/FS/h_Common.pm
index 52af42b..e575cff 100644
--- a/FS/FS/h_Common.pm
+++ b/FS/FS/h_Common.pm
@@ -2,6 +2,7 @@ package FS::h_Common;
use strict;
use FS::Record qw(dbdef);
+use Carp qw(confess);
=head1 NAME
@@ -42,6 +43,10 @@ sub sql_h_search {
my $pkey = dbdef->table($table)->primary_key
or die "can't (yet) search history table $table without a primary key";
+ unless ($end) {
+ confess 'Called sql_h_search without END_TIMESTAMP';
+ }
+
my $notcancelled = '';
if ( scalar(@_) && $_[0] ) {
$notcancelled = "AND 0 = ( SELECT COUNT(*) FROM $table as notdel