summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorivan <ivan>2009-03-31 19:51:55 +0000
committerivan <ivan>2009-03-31 19:51:55 +0000
commita7d43c49b39236710aca367c6eb2d53defd62686 (patch)
treec04b84463cc50d1fa11d4e0b04328b559044c5ed
parent9f263b8cb183b384b9e536a78da6e4f539d7ac70 (diff)
really fix notify for Pg 8.3
-rw-r--r--FS/FS/Cron/notify.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/Cron/notify.pm b/FS/FS/Cron/notify.pm
index c67fcc19a..5b0e186ad 100644
--- a/FS/FS/Cron/notify.pm
+++ b/FS/FS/Cron/notify.pm
@@ -62,7 +62,7 @@ END
0 = ( select count(*) from cust_pkg_option
where cust_pkg.pkgnum = cust_pkg_option.pkgnum
and cust_pkg_option.optionname = 'impending_recur_notification_sent'
- and cust_pkg_option.optionvalue = 1
+ and CAST( cust_pkg_option.optionvalue AS INTEGER ) = 1
)
END