projects
/
scpubgit/HTML-String.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
(parent:
cb4648f
)
Stop skipping false strings when concatenating
Florian Ragwitz [Thu, 12 Sep 2013 13:43:50 +0000 (09:43 -0400)]
lib/HTML/String/Value.pm
patch
|
blob
|
blame
|
history
diff --git
a/lib/HTML/String/Value.pm
b/lib/HTML/String/Value.pm
index
1eedc5e
..
e3803b8
100644
(file)
--- a/
lib/HTML/String/Value.pm
+++ b/
lib/HTML/String/Value.pm
@@
-75,7
+75,7
@@
sub _hsv_unescaped_string {
sub _hsv_dot {
my ($self, $str, $prefix) = @_;
- return $self unless $str;
+ return $self unless length $str;
my @parts = @{$self->{parts}};