diff options
| author | ivan <ivan> | 2008-02-10 23:58:52 +0000 | 
|---|---|---|
| committer | ivan <ivan> | 2008-02-10 23:58:52 +0000 | 
| commit | e2f1bdeb5cad052ae0a7ab6e2ed773a9fca569a0 (patch) | |
| tree | 207a40638246bf8572830a4e9b183423797cd6e0 | |
| parent | 0abf2a643d81eb2eb17011e57666e11db71cdd1e (diff) | |
comment out unused db statements in a way that doesn't get to the database, to avoid Pg vs mysql comment-out differences
| -rw-r--r-- | FS/FS/Cron/notify.pm | 14 | 
1 files changed, 9 insertions, 5 deletions
diff --git a/FS/FS/Cron/notify.pm b/FS/FS/Cron/notify.pm index 622f15f6b..c2f976390 100644 --- a/FS/FS/Cron/notify.pm +++ b/FS/FS/Cron/notify.pm @@ -42,11 +42,15 @@ sub notify_flat_delay {                                  or  cust_pkg.expire > $time                                    + cast(part_pkg_option.optionvalue as integer)                                      * 86400 -/*                            and ( cust_pkg.adjourn is null -                                or  cust_pkg.adjourn > $time --- Should notify suspended ones   + cast(part_pkg_option.optionvalue as integer) -                                    * 86400 -*/ +END + +#/*                            and ( cust_pkg.adjourn is null +#                                or  cust_pkg.adjourn > $time +#-- Should notify suspended ones  + cast(part_pkg_option.optionvalue as integer) +#                                    * 86400 +#*/ + +  $where_pkg .= <<"END";                                    )                          )            )  | 
