Bug 30952: Fix biblio detail display when covers are enabled
[koha-ffzg.git] / misc / sax_parser_print.pl
index 97c0ab5..5d3a1ac 100755 (executable)
@@ -1,11 +1,15 @@
 #!/usr/bin/perl
 # check the current SAX Parser
+
+use strict;
+use warnings;
 use XML::SAX::ParserFactory;
-$parser = XML::SAX::ParserFactory->parser();
+
+my $parser = XML::SAX::ParserFactory->parser();
 print "Koha wants something like:
     XML::LibXML::SAX::Parser=HASH(0x81fe220)
 You have:
     $parser\n";
 print "Looks " .
     ($parser =~ /^XML::LibXML::SAX::Parser=HASH/ ?
-    "good.\n" : "bad, check INSTALL.* documentation.\n");
+    "good.\n" : "bad, check the Koha wiki documentation at https://wiki.koha-community.org.\n");