
sunnavy at bestpractical
Nov 9, 2009, 3:48 AM
Post #1 of 1
(290 views)
Permalink
|
|
rt branch, 3.999-trunk, updated. 0f31ca72e6017a39f7a76ad1d1448c2ac3d43a36
|
|
The branch, 3.999-trunk has been updated via 0f31ca72e6017a39f7a76ad1d1448c2ac3d43a36 (commit) from b1befea01c969a08b6cc8dee572d0ebe6d27e21f (commit) Summary of changes: share/html/SelfService/Display.html | 2 +- share/html/Ticket/Update.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) - Log ----------------------------------------------------------------- commit 0f31ca72e6017a39f7a76ad1d1448c2ac3d43a36 Author: sunnavy <sunnavy [at] bestpractical> Date: Mon Nov 9 19:42:34 2009 +0800 small case fix diff --git a/share/html/SelfService/Display.html b/share/html/SelfService/Display.html index 83e1834..7a2a347 100755 --- a/share/html/SelfService/Display.html +++ b/share/html/SelfService/Display.html @@ -106,7 +106,7 @@ if ( $ARGS{'attach'} ) { # attachment? attachment_field_name => 'attach', ); - my $file_path = Encode::decode_utf8("$ARGS{'Attach'}"); + my $file_path = Encode::decode_utf8("$ARGS{'attach'}"); Jifty->web->session->set('Attachments', { %{ Jifty->web->session->get('Attachments') || {} }, $file_path => $attachment, diff --git a/share/html/Ticket/Update.html b/share/html/Ticket/Update.html index 5d4ad5b..c2c108c 100755 --- a/share/html/Ticket/Update.html +++ b/share/html/Ticket/Update.html @@ -221,7 +221,7 @@ if ($ARGS{'attach'}) { # attachment? attachment_field_name => 'attach' ); - my $file_path = Encode::decode_utf8("$ARGS{'Attach'}"); + my $file_path = Encode::decode_utf8("$ARGS{'attach'}"); Jifty->web->session->set('Attachments', { %{Jifty->web->session->get('Attachments') || {}}, $file_path => $attachment, ----------------------------------------------------------------------- _______________________________________________ Rt-commit mailing list Rt-commit [at] lists http://lists.bestpractical.com/cgi-bin/mailman/listinfo/rt-commit
|