Lines 140-146
sub XSLTParse4Display {
Link Here
|
140 |
$sysxml .= "</sysprefs>\n"; |
140 |
$sysxml .= "</sysprefs>\n"; |
141 |
$xmlrecord =~ s/\<\/record\>/$itemsxml$sysxml\<\/record\>/; |
141 |
$xmlrecord =~ s/\<\/record\>/$itemsxml$sysxml\<\/record\>/; |
142 |
if ($fixamps) { # We need to correct the ampersand entities that Zebra outputs |
142 |
if ($fixamps) { # We need to correct the ampersand entities that Zebra outputs |
143 |
$xmlrecord =~ s/\&/\&/g; |
143 |
$xmlrecord =~ s/\&amp;/\&/g; |
144 |
} |
144 |
} |
145 |
$xmlrecord =~ s/\& /\&\; /; |
145 |
$xmlrecord =~ s/\& /\&\; /; |
146 |
$xmlrecord =~ s/\&\;amp\; /\&\; /; |
146 |
$xmlrecord =~ s/\&\;amp\; /\&\; /; |
147 |
- |
|
|