diff options
Diffstat (limited to 'rt/html/SelfService/Update.html')
-rw-r--r-- | rt/html/SelfService/Update.html | 36 |
1 files changed, 19 insertions, 17 deletions
diff --git a/rt/html/SelfService/Update.html b/rt/html/SelfService/Update.html index 816a610aa..b10716f9a 100644 --- a/rt/html/SelfService/Update.html +++ b/rt/html/SelfService/Update.html @@ -2,7 +2,7 @@ %# %# COPYRIGHT: %# -%# This software is Copyright (c) 1996-2005 Best Practical Solutions, LLC +%# This software is Copyright (c) 1996-2007 Best Practical Solutions, LLC %# <jesse@bestpractical.com> %# %# (Except where explicitly superseded by other copyright notices) @@ -22,7 +22,9 @@ %# %# You should have received a copy of the GNU General Public License %# along with this program; if not, write to the Free Software -%# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. +%# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA +%# 02110-1301 or visit their web page on the internet at +%# http://www.gnu.org/copyleft/gpl.html. %# %# %# CONTRIBUTION SUBMISSION POLICY: @@ -48,9 +50,9 @@ &> -<FORM ACTION="Display.html" METHOD=POST ENCTYPE="multipart/form-data"> -<input type=hidden name="UpdateType" value="response"> -<input TYPE="hidden" NAME="id" VALUE="<%$Ticket->Id%>"> +<form action="Display.html" method="post" enctype="multipart/form-data"> +<input type="hidden" class="hidden" name="UpdateType" value="response" /> +<input type="hidden" class="hidden" name="id" value="<%$Ticket->Id%>" /> <table> <tr> <td class="label"> @@ -65,30 +67,30 @@ <&|/l&>Subject</&> </td> <td class="value"> - <input name="UpdateSubject" size=60 value="<% $Ticket->Subject %>"> + <input name="UpdateSubject" size="60" value="<% $Ticket->Subject %>" /> </td> </tr> % if (exists $session{'Attachments'}) { <tr> - <TD class="label"> + <td class="label"> <&|/l&>Attached file</&> - </TD> - <TD COLSPAN=5 class="value"> - <&|/l&>Check box to delete</&><BR> + </td> + <td colspan="5" class="value"> + <&|/l&>Check box to delete</&><br /> % foreach my $attach_name (keys %{$session{'Attachments'}}) { - <input type="checkbox" name="DeleteAttach-<%$attach_name%>" value="1"><%$attach_name%><BR> + <input type="checkbox" class="checkbox" name="DeleteAttach-<%$attach_name%>" value="1" /><%$attach_name%><br /> % } # end of foreach - </TD> -</TR> + </td> +</tr> % } # end of if <tr> <td class"label"> <&|/l&>Attach</&> </td> <td class="value"> - <input name="Attach" type="file"> - <input type="hidden" name="UpdateAttach" value="1"> + <input name="Attach" type="file" /> + <input type="hidden" class="hidden" name="UpdateAttach" value="1" /> </td> </tr> </table> @@ -97,11 +99,11 @@ Name => "UpdateContent", QuoteTransaction => $ARGS{QuoteTransaction} &> - <br> + <br /> <& /Elements/Submit &> - </FORM> + </form> |