diff options
-rw-r--r-- | httemplate/search/elements/search-html.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/httemplate/search/elements/search-html.html b/httemplate/search/elements/search-html.html index 67f0b0d03..96591dfd7 100644 --- a/httemplate/search/elements/search-html.html +++ b/httemplate/search/elements/search-html.html @@ -144,18 +144,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" ); |