Hi,

Stumbled across some HTML buglets while fixing something else.  This
small patch fixes some syntax errors (<input ...> -> <input .../>) and
removed a spurious tag:


Index: Kernel/Output/HTML/Standard/AgentCompose.dtl
===================================================================
--- Kernel/Output/HTML/Standard/AgentCompose.dtl        (revision 97)
+++ Kernel/Output/HTML/Standard/AgentCompose.dtl        (working copy)
@@ -158,9 +158,14 @@
 <!-- dtl:block:Attachment -->
        <tr><td>$QData{"Filename"}</td><td>$QData{"Filesize"}</td><td 
align="right"><input type="submit" name="AttachmentDelete$QData{"FileID"}" 
value="$Text{"Delete"}"></td></tr>
 <!-- dtl:block:Attachment -->
-       <tr><td colspan="2">
-       <input name="file_upload" type="file" size="30" class="fixed"></td><td 
align="right"><input type="submit" name="AttachmentUpload" 
value="$Text{"Attach"}"><a name="attachment">
-       </td></tr>
+       <tr>
+         <td colspan="2">
+          <input name="file_upload" type="file" size="30" class="fixed" />
+        </td>
+        <td align="right">
+          <input type="submit" name="AttachmentUpload" value="$Text{"Attach"}" 
class="fixed" />
+        </td>
+       </tr>
        </table>
       </td>
     </tr>

Regards,
-- 
Kristoffer.

_______________________________________________
OTRS mailing list: dev - Webpage: http://otrs.org/
Archive: http://lists.otrs.org/pipermail/dev
To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/dev

Reply via email to