[freeside-commits] branch master updated. 39754a8b5468d95124ee2c0bbcd1c104904d1fe5

Ivan ivan at 420.am
Tue Jun 4 01:07:05 PDT 2013


The branch, master has been updated
       via  39754a8b5468d95124ee2c0bbcd1c104904d1fe5 (commit)
      from  7588a4ac90a9b07c08a3107cd1107d773be1c991 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 39754a8b5468d95124ee2c0bbcd1c104904d1fe5
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Tue Jun 4 01:07:02 2013 -0700

    apply the RT 3.8.17/4.0.13 database fix automatically, RT#13852, RT#17928

diff --git a/FS/FS/TicketSystem.pm b/FS/FS/TicketSystem.pm
index 165856e..7b18575 100644
--- a/FS/FS/TicketSystem.pm
+++ b/FS/FS/TicketSystem.pm
@@ -319,6 +319,17 @@ sub _upgrade_data {
     }
   }
 
+  #Pg-specific 
+  my $cve_2013_3373_sql = q(
+    UPDATE Tickets SET Subject = REPLACE(Subject,E'\n','')
+  );
+  #need this for mysql
+  #UPDATE Tickets SET Subject = REPLACE(Subject,'\n','');
+
+  my $cve_2013_3373_sth = $dbh->prepare( $cve_2013_3373_sql)
+    or die $dbh->errstr;
+  $cve_2013_3373_sth->execute or die $cve_2013_3373_sth->errstr;
+
   return;
 }
 

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/TicketSystem.pm |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)




More information about the freeside-commits mailing list