diff options
Diffstat (limited to 'httemplate')
-rw-r--r-- | httemplate/view/svc_phone.cgi | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/httemplate/view/svc_phone.cgi b/httemplate/view/svc_phone.cgi index e6bdce2c4..3cc1b3f44 100644 --- a/httemplate/view/svc_phone.cgi +++ b/httemplate/view/svc_phone.cgi @@ -34,7 +34,11 @@ my $html_foot = sub { "View $_ CDRs</A>"; } keys(%what); - join(' | ', @links). '<BR>'; + my @ilinks = ( qq(<A HREF="${p}search/cdr.html?dst=$number">). + 'View incoming CDRs</A>' ); + + join(' | ', @links ). '<BR>'. + join(' | ', @ilinks). '<BR>'; }; |