[Rt-commit] rt branch, 3.8-approvals-queryfix, updated. rt-3.8.8-146-g7240e1a

Kevin Falcone falcone at bestpractical.com
Wed Sep 1 15:13:26 EDT 2010


The branch, 3.8-approvals-queryfix has been updated
       via  7240e1a815de0c798bdbc04a5fb060db8128b754 (commit)
      from  bc978caad4336b6ebf3cb86f9d9fb0b1d7dedd2c (commit)

Summary of changes:
 share/html/Approvals/Elements/PendingMyApproval |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

- Log -----------------------------------------------------------------
commit 7240e1a815de0c798bdbc04a5fb060db8128b754
Author: Kevin Falcone <falcone at bestpractical.com>
Date:   Wed Sep 1 15:15:45 2010 -0400

    Fix a dumb case sensitivity mistake

diff --git a/share/html/Approvals/Elements/PendingMyApproval b/share/html/Approvals/Elements/PendingMyApproval
index 55c4c58..42c7477 100755
--- a/share/html/Approvals/Elements/PendingMyApproval
+++ b/share/html/Approvals/Elements/PendingMyApproval
@@ -76,7 +76,7 @@ my $created_after = RT::Date->new( $session{'CurrentUser'} );
 my @clauses;
 push @clauses,
     "Owner = '".$session{CurrentUser}->Id."' OR AdminCc = '".$session{CurrentUser}->UserObj->EmailAddress."'";
-push @clauses, "Type = 'Approval'";
+push @clauses, "Type = 'approval'";
 
 my @statuses;
 if ( $ARGS{'ShowResolved'} ) {

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


More information about the Rt-commit mailing list