diff options
| author | khoff <khoff> | 2003-07-07 22:44:40 +0000 |
|---|---|---|
| committer | khoff <khoff> | 2003-07-07 22:44:40 +0000 |
| commit | 5b48183ad64fb7ea119c994ed1a921fcda4a0f9d (patch) | |
| tree | e94310cfda08657f475d69cf47b8e4d2d68cd647 /httemplate/view/svc_forward.cgi | |
| parent | 0b6bf02cff2b9cffaea70d81de9396a3a4f56b5d (diff) | |
Various virtual field UI updates/bug fixes. Fixed ordered qsearches.
Diffstat (limited to 'httemplate/view/svc_forward.cgi')
| -rwxr-xr-x | httemplate/view/svc_forward.cgi | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/httemplate/view/svc_forward.cgi b/httemplate/view/svc_forward.cgi index c8d1d6213..5d619de54 100755 --- a/httemplate/view/svc_forward.cgi +++ b/httemplate/view/svc_forward.cgi @@ -61,7 +61,14 @@ print qq!<A HREF="${p}edit/svc_forward.cgi?$svcnum">Edit this information</A>!. qq!<TR><TD ALIGN="right">Email to</TD>!. qq!<TD BGCOLOR="#ffffff">$source</TD></TR>!. qq!<TR><TD ALIGN="right">Forwards to </TD>!. - qq!<TD BGCOLOR="#ffffff">$destination</TD></TR></TABLE>!. + qq!<TD BGCOLOR="#ffffff">$destination</TD></TR>!; + +foreach (sort { $a cmp $b } $svc_forward->virtual_fields) { + print $svc_forward->pvf($_)->widget('HTML', 'view', $svc_forward->getfield($_)), + "\n"; +} + +print qq! </TABLE>!. '<BR>'. joblisting({'svcnum'=>$svcnum}, 1). '</BODY></HTML>' ; |
