Bug 34041: (follow-up) escape double dashes to prevent issues
Having double dashes inside a commmented block is not valid XML. This patch restores it, with an added message explaining it To test: 1. Run: $ xmllint etc/z3950/config.xml => FAIL: You get: etc/z3950/config.xml:5: parser error : Double hyphen within comment: <!-- <config> <z3950_responder_options> <z3950_responder_options>--add-item-status k -t 5</z3950_responder_options 2. Apply this patch 3. Repeat 1 => SUCCESS: All good! Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
This commit is contained in:
parent
3878dbe999
commit
11c69496bc
1 changed files with 4 additions and 2 deletions
|
@ -1,8 +1,10 @@
|
|||
<yazgfs>
|
||||
<!-- See z3950_responder.pl for available options. The options -c, -u and -p are already passed automatically by koha-z3950-responder -->
|
||||
<!-- See z3950_responder.pl for available options. The options -c, -u and -p are
|
||||
already passed automatically by koha-z3950-responder, note that dashes for the
|
||||
add-item-status switch are escaped for XML compliance but should not if uncommented -->
|
||||
<!--
|
||||
<config>
|
||||
<z3950_responder_options>--add-item-status k -t 5</z3950_responder_options>
|
||||
<z3950_responder_options>\-\-add-item-status k -t 5</z3950_responder_options>
|
||||
</config>
|
||||
-->
|
||||
|
||||
|
|
Loading…
Reference in a new issue