[Rt-commit] rt branch, 4.4-trunk, updated. rt-4.4.3-196-g5032004cd
? sunnavy
sunnavy at bestpractical.com
Mon Feb 11 16:07:27 EST 2019
The branch, 4.4-trunk has been updated
via 5032004cd2f2da4882f834bc92eb44608e2873fa (commit)
from 80d0f7e77128e86d01577ba346082efd241b6efa (commit)
Summary of changes:
share/html/Ticket/Update.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 5032004cd2f2da4882f834bc92eb44608e2873fa
Author: Matt Zagrabelny <mzagrabe at d.umn.edu>
Date: Fri Feb 1 15:02:15 2019 -0600
Fix table wrapping error in Ticket/Update.html
Commit 3b48f214f5a3d changed the component parameter from InTable to
AsTable for calling /Ticket/Elements/EditTransactionCustomFields.
Omitting InTable causes the called component to insert an unnecessary
(and wrong) wrapping <table> element to the already existing table.
The wrapping <table> element breaks the HTML validity.
diff --git a/share/html/Ticket/Update.html b/share/html/Ticket/Update.html
index 5a5ffb40d..e7dd715d3 100644
--- a/share/html/Ticket/Update.html
+++ b/share/html/Ticket/Update.html
@@ -119,7 +119,7 @@
% $m->callback( %ARGS, CallbackName => 'AfterWorked', Ticket => $TicketObj );
-<& /Ticket/Elements/EditTransactionCustomFields, %ARGS, TicketObj => $TicketObj, AsTable => 1 &>
+<& /Ticket/Elements/EditTransactionCustomFields, %ARGS, TicketObj => $TicketObj, InTable => 1 &>
</table>
</&>
-----------------------------------------------------------------------
More information about the rt-commit
mailing list