[freeside-commits] freeside/FS/FS Schema.pm, 1.230, 1.231 acct_snarf.pm, 1.5, 1.6

Ivan,,, ivan at wavetail.420.am
Mon Aug 16 23:41:31 PDT 2010


Update of /home/cvs/cvsroot/freeside/FS/FS
In directory wavetail.420.am:/tmp/cvs-serv10766/FS/FS

Modified Files:
	Schema.pm acct_snarf.pm 
Log Message:
LEAVE is reserved in msyql

Index: Schema.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/Schema.pm,v
retrieving revision 1.230
retrieving revision 1.231
diff -u -w -d -r1.230 -r1.231
--- Schema.pm	16 Aug 2010 17:49:02 -0000	1.230
+++ Schema.pm	17 Aug 2010 06:41:29 -0000	1.231
@@ -2181,7 +2181,7 @@
         'username',   'varchar',     '', $char_d, '', '', 
         '_password',  'varchar',     '', $char_d, '', '', 
         'check_freq',     'int', 'NULL',      '', '', '', 
-        'leave',         'char', 'NULL',       1, '', '', 
+        'leavemail',     'char', 'NULL',       1, '', '', 
         'apop',          'char', 'NULL',       1, '', '', 
         'tls',           'char', 'NULL',       1, '', '', 
         'mailbox',    'varchar', 'NULL', $char_d, '', '', 

Index: acct_snarf.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/acct_snarf.pm,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -w -d -r1.5 -r1.6
--- acct_snarf.pm	7 Aug 2010 10:11:42 -0000	1.5
+++ acct_snarf.pm	17 Aug 2010 06:41:29 -0000	1.6
@@ -142,7 +142,7 @@
     || $self->ut_alphan('protocol')
     || $self->ut_textn('username')
     || $self->ut_numbern('check_freq')
-    || $self->ut_enum('leave', [ '', 'Y' ])
+    || $self->ut_enum('leavemail', [ '', 'Y' ])
     || $self->ut_enum('apop', [ '', 'Y' ])
     || $self->ut_enum('tls', [ '', 'Y' ])
     || $self->ut_alphan('mailbox')
@@ -197,7 +197,7 @@
     'period'   => $self->check_freq.'s',
     'APOP'     => ( $self->apop  eq 'Y' ? 'YES' : 'NO' ),
     'TLS'      => ( $self->tls   eq 'Y' ? 'YES' : 'NO' ),
-    'Leave'    => ( $self->leave eq 'Y' ? 'YES' : 'NO' ), #XXX leave??
+    'Leave'    => ( $self->leavemail eq 'Y' ? 'YES' : 'NO' ), #XXX leave??
   };
 }
 



More information about the freeside-commits mailing list