diff options
| author | mark <mark> | 2012-02-15 01:31:31 +0000 |
|---|---|---|
| committer | mark <mark> | 2012-02-15 01:31:31 +0000 |
| commit | 7b4fd838d00a9a7ccff26b2f1d6e20c86535acfe (patch) | |
| tree | 645259aba81f26d962fd89033d9db24c3013b096 /httemplate/search | |
| parent | 40ecebc1be001360aad31c50d5c8fbcd147d2eda (diff) | |
query billing events to see affected objects, #15142
Diffstat (limited to 'httemplate/search')
| -rw-r--r-- | httemplate/search/elements/search-html.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/httemplate/search/elements/search-html.html b/httemplate/search/elements/search-html.html index d1f4b2f1e..af0c8fc09 100644 --- a/httemplate/search/elements/search-html.html +++ b/httemplate/search/elements/search-html.html @@ -296,6 +296,11 @@ % ? '<A HREF="'. $e->{'link'}. '">' % : '' % ). +% ( $e->{'onclick'} # don't use with 'link' +% ? '<A HREF="#" onclick="' . +% $e->{'onclick'}.'">' +% : '' +% ). % ( $e->{'size'} % ? '<FONT SIZE="'.uc($e->{'size'}).'">' % : '' @@ -310,7 +315,9 @@ % : '' % ). % ( $e->{'size'} ? '</FONT>' : '' ). -% ( $e->{'link'} ? '</A>' : '' ). +% ( $e->{'link'} || $e->{'onclick'} +% ? '</A>' +% : '' ). % '</td>'; % % } @$rowref ). |
