diff options
author | mark <mark> | 2010-05-27 01:03:03 +0000 |
---|---|---|
committer | mark <mark> | 2010-05-27 01:03:03 +0000 |
commit | 5cd82978f42b9f5e59b1f609be613b148600add2 (patch) | |
tree | 6e3d4d76688654f911e7c4d2052cebb3c6a80b87 /httemplate/search/elements | |
parent | e70912ba74b44d3462d345edaef933bff1f3ad86 (diff) |
unbreak download links
Diffstat (limited to 'httemplate/search/elements')
-rw-r--r-- | httemplate/search/elements/search-html.html | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/httemplate/search/elements/search-html.html b/httemplate/search/elements/search-html.html index e5e6ca954..d8cc2fcab 100644 --- a/httemplate/search/elements/search-html.html +++ b/httemplate/search/elements/search-html.html @@ -1,4 +1,3 @@ -% % if ( exists($opt{'redirect'}) && $opt{'redirect'} % && scalar(@$rows) == 1 && $total == 1 % && $type ne 'html-print' @@ -144,18 +143,18 @@ Download full results<BR> % $cgi->param('_type', "$xlsname.xls" ); - as <A HREF="<% $self_url %>">Excel spreadsheet</A><BR> + as <A HREF="<% $cgi->self_url %>">Excel spreadsheet</A><BR> % $cgi->param('_type', 'csv'); - as <A HREF="<% $self_url %>">CSV file</A><BR> + as <A HREF="<% $cgi->self_url %>">CSV file</A><BR> % if ( defined($opt{xml_elements}) ) { % $cgi->param('_type', 'xml'); - as <A HREF="<% $self_url %>">XML file</A><BR> + as <A HREF="<% $cgi->self_url %>">XML file</A><BR> % } % $cgi->param('_type', 'html-print'); - as <A HREF="<% $self_url %>">printable copy</A> + as <A HREF="<% $cgi->self_url %>">printable copy</A> </TD> % $cgi->param('_type', "html" ); |