diff options
author | ivan <ivan> | 2008-06-25 00:29:31 +0000 |
---|---|---|
committer | ivan <ivan> | 2008-06-25 00:29:31 +0000 |
commit | a54f127b4decc976d91a3ce7fbb66edbef9bdc87 (patch) | |
tree | fa9bf939dfa5c81e3a3d4a7622761aadb751b506 | |
parent | c75ad3dba5fe192298622fd262402e41083295fe (diff) |
finish adding str2time_sql_closing
-rw-r--r-- | FS/FS/Record.pm | 3 | ||||
-rw-r--r-- | htetc/handler.pl | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/FS/FS/Record.pm b/FS/FS/Record.pm index b6761a68b..932c63426 100644 --- a/FS/FS/Record.pm +++ b/FS/FS/Record.pm @@ -26,7 +26,8 @@ use Tie::IxHash; @ISA = qw(Exporter); #export dbdef for now... everything else expects to find it here -@EXPORT_OK = qw(dbh fields hfields qsearch qsearchs dbdef jsearch str2time_sql); +@EXPORT_OK = qw(dbh fields hfields qsearch qsearchs dbdef jsearch + str2time_sql str2time_sql_closing ); $DEBUG = 0; $me = '[FS::Record]'; diff --git a/htetc/handler.pl b/htetc/handler.pl index 2a287a9c9..7228ad5bb 100644 --- a/htetc/handler.pl +++ b/htetc/handler.pl @@ -130,7 +130,9 @@ sub handler use FS::UID qw( adminsuidsetup cgisuidsetup getotaker dbh datasrc driver_name ); - use FS::Record qw(qsearch qsearchs fields dbdef str2time_sql); + use FS::Record qw( qsearch qsearchs fields dbdef + str2time_sql str2time_sql_closing + ); use FS::Conf; use FS::CGI qw(header menubar popurl rooturl table itable ntable idiot eidiot myexit http_header); |