[Rt-commit] rt branch, allow-loops, updated. rt-3.8.5-296-g5bc7d05
Alex M Vandiver
alexmv at bestpractical.com
Wed Dec 16 13:48:25 EST 2009
The branch, allow-loops has been updated
via 5bc7d05bc5320274e9ac870dd59bec43f124a301 (commit)
from 9e051fa517e566c3c7419a3e95192b0de0f42f99 (commit)
Summary of changes:
lib/RT/Interface/Email.pm | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 5bc7d05bc5320274e9ac870dd59bec43f124a301
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Wed Dec 16 13:48:13 2009 -0500
Fix case of table names for mysql
diff --git a/lib/RT/Interface/Email.pm b/lib/RT/Interface/Email.pm
index 6f757ee..048321b 100755
--- a/lib/RT/Interface/Email.pm
+++ b/lib/RT/Interface/Email.pm
@@ -1514,7 +1514,7 @@ sub RecentMessage {
my $txns = $messages->Join(
ALIAS1 => 'main',
FIELD1 => 'transactionid',
- TABLE2 => 'transactions',
+ TABLE2 => 'Transactions',
FIELD2 => 'id',
);
$messages->Limit(
@@ -1526,7 +1526,7 @@ sub RecentMessage {
my $tickets = $messages->Join(
ALIAS1 => $txns,
FIELD1 => 'objectid',
- TABLE2 => 'tickets',
+ TABLE2 => 'Tickets',
FIELD2 => 'id',
);
$messages->Limit(
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list