diff options
author | saal | 2007-05-30 13:23:21 +0000 |
---|---|---|
committer | saal | 2007-05-30 13:23:21 +0000 |
commit | 01729808a29f5bea02b5df9d9560ced638125126 (patch) | |
tree | 82cc51eedaf6659086f86e282839832dd4492a8f /src | |
parent | 90a9fbcb83c6a56c189f95801360319337ec40e6 (diff) | |
download | mtc-01729808a29f5bea02b5df9d9560ced638125126.zip mtc-01729808a29f5bea02b5df9d9560ced638125126.tar.gz mtc-01729808a29f5bea02b5df9d9560ced638125126.tar.bz2 mtc-01729808a29f5bea02b5df9d9560ced638125126.tar.xz |
retour à la version précédente de SVG2zinc
Diffstat (limited to 'src')
-rw-r--r-- | src/SVG/SVG2zinc.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/SVG/SVG2zinc.pm b/src/SVG/SVG2zinc.pm index 2b1bef2..f344b96 100644 --- a/src/SVG/SVG2zinc.pm +++ b/src/SVG/SVG2zinc.pm @@ -953,7 +953,7 @@ my %convertFormat = ( sub image { my ($parser, $elementname, %attrs) = @_; push (@nameStack, $attrs{id}); - if(!defined ($attrs{id}) or ($attrs{id} eq $targetName)) + if($attrs{id} eq $targetName) { $includeFollowingItems = 1; } |