[Rt-commit] rt branch, master, updated. rt-3.9.7-1228-gd0ff1a5
Alex Vandiver
alexmv at bestpractical.com
Fri Jan 21 04:30:06 EST 2011
The branch, master has been updated
via d0ff1a556b4f5236cda5689d10de972292f57408 (commit)
via 03d9ed34e7e5540583bb549aee904010a156dc73 (commit)
via 158b4f168d2b4256335004e78ffdee3a391d0f20 (commit)
from cc1102a036dd43d1ef8b975aa6c216350ee6bd29 (commit)
Summary of changes:
lib/RT/Interface/Web.pm | 2 +-
lib/RT/Record.pm | 1 +
share/html/User/Prefs.html | 2 +-
3 files changed, 3 insertions(+), 2 deletions(-)
- Log -----------------------------------------------------------------
commit 158b4f168d2b4256335004e78ffdee3a391d0f20
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Fri Jan 21 02:10:50 2011 -0500
Warnings avoidance for undef bidnings during SQL query logging
diff --git a/lib/RT/Interface/Web.pm b/lib/RT/Interface/Web.pm
index 6062aca..ae1b363 100644
--- a/lib/RT/Interface/Web.pm
+++ b/lib/RT/Interface/Web.pm
@@ -1001,7 +1001,7 @@ sub LogRecordedSQLStatements {
message => "SQL("
. sprintf( "%.6f", $duration )
. "s): $sql;"
- . ( @bind ? " [ bound values: @{[map{qq|'$_'|} @bind]} ]" : "" )
+ . ( @bind ? " [ bound values: @{[map{defined($_)?qq|'$_'|:qq|undef|} @bind]} ]" : "" )
);
}
commit 03d9ed34e7e5540583bb549aee904010a156dc73
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Fri Jan 21 02:21:40 2011 -0500
Remove duplicate "Lang" which caused "That is already the current value" on lang changes
diff --git a/share/html/User/Prefs.html b/share/html/User/Prefs.html
index d1c5a43..2f3c9c8 100755
--- a/share/html/User/Prefs.html
+++ b/share/html/User/Prefs.html
@@ -214,7 +214,7 @@ my @fields = qw(
Organization RealName NickName Lang EmailEncoding WebEncoding
ExternalContactInfoId ContactInfoSystem Gecos ExternalAuthId
AuthSystem HomePhone WorkPhone MobilePhone PagerPhone Address1
- Address2 City State Zip Country Lang Timezone
+ Address2 City State Zip Country Timezone
);
$m->callback(
commit d0ff1a556b4f5236cda5689d10de972292f57408
Author: Alex Vandiver <alexmv at bestpractical.com>
Date: Fri Jan 21 02:21:51 2011 -0500
POD nitpick
diff --git a/lib/RT/Record.pm b/lib/RT/Record.pm
index dda9d33..26a8f2f 100644
--- a/lib/RT/Record.pm
+++ b/lib/RT/Record.pm
@@ -933,6 +933,7 @@ sub _UpdateAttributes {
"User" # loc
"Group" # loc
"Queue" # loc
+
=cut
push @results, $self->loc( $prefix ) . " $label: ". $msg;
-----------------------------------------------------------------------
More information about the Rt-commit
mailing list