Koha/koha-tmpl/opac-tmpl/bootstrap/en/includes/doc-head-open.inc
Mark Tompsett c0a52bb198 Bug 13948: Prevent explosion when Template::Plugin::Stash not installed
TEST PLAN
---------
1) Install first two patches
2) do not install, or uninstall Template::Plugin::Stash
3) Upgrade to make sure system preference is added.
4) Set the system preference to turn it on for Staff and OPAC
5) Refresh staff -- kaboom
6) Load OPAC -- kaboom
7) Apply this patch
8) Reload staff and OPAC
   -- nice HTML comment about what is wrong.
9) run koha qa test tools.

Signed-off-by: Bernardo Gonzalez Kriegel <bgkriegel@gmail.com>

Neat, runs well. Tested with/without sysprefs and Template::Plugin::Stash
No koha-qa errors

Signed-off-by: Jonathan Druart <jonathan.druart@koha-community.org>
2015-07-28 10:30:21 -03:00

25 lines
724 B
HTML

<!DOCTYPE html>
<!-- TEMPLATE FILE: [% template.name.split('/').last %] -->
[% USE Koha %]
[% IF Koha.Preference('DumpTemplateVarsOpac') %]
[% TRY %]
[% USE Stash %]
[% USE Dumper %]
<!--
[% FILTER replace('<!--', '<!- -') %]
[% FILTER replace('-->', '- ->') %]
[% Dumper.dump( Stash.stash() ) %]
[% END %]
[% END %]
-->
[% CATCH %]
<!--
DumpTemplateVarsOpac is set to 'Do', but
Template::Plugin::Stash is not installed.
-->
[% END %]
[% END %]
[% IF ( bidi ) %]<html lang="[% lang %]" dir="[% bidi %]" class="no-js">[% ELSE %]<html lang="[% lang %]" class="no-js">[% END %]
<head>