[Rt-commit] rt branch, query-logging, updated. rt-3.8.8-943-gf9e9b63
Shawn Moore
sartak at bestpractical.com
Tue Sep 28 19:55:53 EDT 2010
The branch, query-logging has been updated
via f9e9b6300eac7be60b2b34b1fd6f07093ab0c28f (commit)
from 5eed0f11594bbbc4620d2759ab82145d4e83db11 (commit)
Summary of changes:
lib/RT/Handle.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
- Log -----------------------------------------------------------------
commit f9e9b6300eac7be60b2b34b1fd6f07093ab0c28f
Author: Shawn M Moore <sartak at bestpractical.com>
Date: Tue Sep 28 19:59:03 2010 -0400
We have $self here, use it
diff --git a/lib/RT/Handle.pm b/lib/RT/Handle.pm
index 41eddd9..74cc445 100755
--- a/lib/RT/Handle.pm
+++ b/lib/RT/Handle.pm
@@ -1117,7 +1117,7 @@ sub FillIn {
my $b = 0;
# is this regex sufficient?
- $sql =~ s{\?}{$RT::Handle->Quote($bind->[$b++])}eg;
+ $sql =~ s{\?}{$self->Quote($bind->[$b++])}eg;
return $sql;
}
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list