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:
e1ffd5c
)
Rückwärtskompatibilität mit in der Datenbank gespeicherten Entwürfen, bei denen noch...
author
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 30 May 2007 13:19:23 +0000
(13:19 +0000)
committer
Moritz Bunkus
<m.bunkus@linet-services.de>
Wed, 30 May 2007 13:19:23 +0000
(13:19 +0000)
SL/MoreCommon.pm
patch
|
blob
|
history
diff --git
a/SL/MoreCommon.pm
b/SL/MoreCommon.pm
index
9669cdd
..
b0b64d1
100644
(file)
--- a/
SL/MoreCommon.pm
+++ b/
SL/MoreCommon.pm
@@
-31,7
+31,7
@@
sub restore_form {
$old_form =~ s|!r|\r|g;
$old_form =~ s|!n|\n|g;
- $old_form =~ s|!
:
|!|g;
+ $old_form =~ s|!
[!:]
|!|g;
my $new_form = YAML::Load($old_form);
map { $form->{$_} = $new_form->{$_}; } keys %{$new_form};