Browse Source

Fix for Bug 6458 - incorrect parsing result in translation processing

Fixing improperly nested template logic inside HTML tags in spine
label print template.

Signed-off-by: Chris Cormack <chrisc@catalyst.net.nz>
3.6.x-rmaint/testing
Owen Leonard 13 years ago
committed by Chris Cormack
parent
commit
ecfa1ddd49
  1. 6
      koha-tmpl/intranet-tmpl/prog/en/modules/labels/spinelabel-print.tt

6
koha-tmpl/intranet-tmpl/prog/en/modules/labels/spinelabel-print.tt

@ -1,6 +1,10 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD Xhtml 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="[% lang %]" xml:lang="[% lang %]" [% IF ( bidi ) %]dir="[% bidi %]"[% END %] xmlns="http://www.w3.org/1999/xhtml">
[% IF ( bidi ) %]
<html lang="[% lang %]" xml:lang="[% lang %]" dir="[% bidi %]" xmlns="http://www.w3.org/1999/xhtml">
[% ELSE %]
<html lang="[% lang %]" xml:lang="[% lang %]" xmlns="http://www.w3.org/1999/xhtml">
[% END %]
<head>
<title>Koha &rsaquo; Tools &rsaquo; Spine Labels</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

Loading…
Cancel
Save