diff options
author | ivan <ivan> | 2011-06-10 03:33:44 +0000 |
---|---|---|
committer | ivan <ivan> | 2011-06-10 03:33:44 +0000 |
commit | c7bf005860b761a55ca075df987fb3b5ade8c242 (patch) | |
tree | 59fdf9039e264c654380528ffdf511b9b69d30a2 /httemplate/elements/tr-select-agent.html | |
parent | 6b4fe3354a905755f9e6f1810cf94bbc269ce81d (diff) |
add package def option to show $0 recurring on invoices, RT#9777
Diffstat (limited to 'httemplate/elements/tr-select-agent.html')
-rw-r--r-- | httemplate/elements/tr-select-agent.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/elements/tr-select-agent.html b/httemplate/elements/tr-select-agent.html index 0985d1aa7..ce03c40f5 100644 --- a/httemplate/elements/tr-select-agent.html +++ b/httemplate/elements/tr-select-agent.html @@ -24,7 +24,11 @@ Example: </%doc> % if ( scalar(@agents) == 1 ) { - <INPUT TYPE="hidden" NAME="<% $opt{'field'} || 'agentnum' %>" VALUE="<% $agents[0]->agentnum %>"> + <INPUT TYPE = "hidden" + NAME = "<% $opt{'field'} || 'agentnum' %>" + ID = "<% $opt{'field'} || 'agentnum' %>" + VALUE = "<% $agents[0]->agentnum %>" + > %# YUCK. empty row so we don't throw g_row in edit.html off :/ <TR> |