projects
/
kivitendo-erp.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
06b6783
)
Ein weiteres Sonderzeichen in LaTeX escapen. Fix fuer Bug 315.
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 16 Mar 2006 12:45:53 +0000
(12:45 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Thu, 16 Mar 2006 12:45:53 +0000
(12:45 +0000)
SL/Form.pm
patch
|
blob
|
history
diff --git
a/SL/Form.pm
b/SL/Form.pm
index
6f6e78c
..
1c03e10
100644
(file)
--- a/
SL/Form.pm
+++ b/
SL/Form.pm
@@
-1169,7
+1169,7
@@
sub format_string {
'&', quotemeta('\n'), '
',
'"', '\$', '%', '_', '#', quotemeta('^'),
- '{', '}', '<', '>', '£', "\r"
+ '{', '}', '<', '>', '£', "\r"
, '²'
]
},
'html' => {
@@
-1195,6
+1195,7
@@
sub format_string {
'
' => '\newline ',
'£' => '\pounds ',
+ '²' => '$^2$',
"\r" => ""
});