X-Git-Url: http://koha-dev.rot13.org:8081/gitweb/?a=blobdiff_plain;f=opac%2Fopac-search-history.pl;h=65141b9f7a60013a638c84c4b74b9774cd32d755;hb=cdb05842c3567422cb68d946c6f94104346f1e1d;hp=fdf0701be32e7ebc4e6ef8198d460c820e228b0a;hpb=feeafa8168965183ba8651cf3113c3c32af863ec;p=koha_fer diff --git a/opac/opac-search-history.pl b/opac/opac-search-history.pl index fdf0701be3..65141b9f7a 100755 --- a/opac/opac-search-history.pl +++ b/opac/opac-search-history.pl @@ -13,11 +13,13 @@ # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR # A PARTICULAR PURPOSE. See the GNU General Public License for more details. # -# You should have received a copy of the GNU General Public License along with -# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, -# Suite 330, Boston, MA 02111-1307 USA +# You should have received a copy of the GNU General Public License along +# with Koha; if not, write to the Free Software Foundation, Inc., +# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. use strict; +use warnings; + use C4::Auth qw(:DEFAULT get_session); use CGI; use Storable qw(freeze thaw); @@ -46,7 +48,7 @@ my ($template, $loggedinuser, $cookie) $template->param(dateformat => C4::Context->preference("dateformat")); # If the user is not logged in, we deal with the cookie -if ($loggedinuser == '') { +if (!$loggedinuser) { # Deleting search history if ($cgi->param('action') && $cgi->param('action') eq 'delete') { @@ -142,6 +144,9 @@ if ($loggedinuser == '') { } } + +$template->param(searchhistoryview => 1); + output_html_with_http_headers $cgi, $cookie, $template->output;