|
From: Allen D. <all...@us...> - 2001-08-27 16:40:42
|
Update of /cvsroot/perl-css/Parse/CSS
In directory usw-pr-cvs1:/tmp/cvs-serv7567/CSS
Modified Files:
Style.pm
Log Message:
Style properties now returns hash instead of hashref
Index: Style.pm
===================================================================
RCS file: /cvsroot/perl-css/Parse/CSS/Style.pm,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- Style.pm 2001/08/27 16:18:47 1.1.1.1
+++ Style.pm 2001/08/27 16:40:39 1.2
@@ -69,7 +69,7 @@
} else {
%return = %h;
}
- return \%return;
+ return %return;
}
#now set the properties
|