diff options
author | Mark Wells <mark@freeside.biz> | 2013-03-30 20:38:51 -0700 |
---|---|---|
committer | Mark Wells <mark@freeside.biz> | 2013-03-30 20:38:51 -0700 |
commit | 793108995c3674d3a9078416f6c7766a458bcfb7 (patch) | |
tree | c767be6a74575c348ff8e29c27c0f3eab26279c7 | |
parent | 9eca3439d65eab28fa800557392698a580a04ab6 (diff) |
fix bad xml tags, #21703
-rwxr-xr-x | httemplate/search/477partIIB.html | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/httemplate/search/477partIIB.html b/httemplate/search/477partIIB.html index c58310d36..714f15aca 100755 --- a/httemplate/search/477partIIB.html +++ b/httemplate/search/477partIIB.html @@ -3,9 +3,10 @@ % for ( my $row = 0; $row < scalar(@rows); $row++ ) { % for my $col (0..2) { % if ( exists($data[$col][$row]) ) { -<PartII_<% $row %><% $cols[$col] %>> -% } +<PartII_<% $row %><% $cols[$col] %>>\ +<% $data[$col][$row] %>\ </PartII_<% $row %><% $cols[$col] %>> +% } % } #for $col % } #for $row % } else { # HTML mode |