projects
/
platform
/
upstream
/
perl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c6018da
)
avoid ambiguity in indirect object notation (breaks with overridden
author
Gurusamy Sarathy
<gsar@cpan.org>
Sat, 4 Mar 2000 03:51:05 +0000
(
03:51
+0000)
committer
Gurusamy Sarathy
<gsar@cpan.org>
Sat, 4 Mar 2000 03:51:05 +0000
(
03:51
+0000)
run time require)
p4raw-id: //depot/perl@5502
lib/CGI.pm
patch
|
blob
|
history
diff --git
a/lib/CGI.pm
b/lib/CGI.pm
index
ad7cd02
..
a518598
100644
(file)
--- a/
lib/CGI.pm
+++ b/
lib/CGI.pm
@@
-2281,7
+2281,7
@@
sub cookie {
push(@param,'-expires'=>$expires) if $expires;
push(@param,'-secure'=>$secure) if $secure;
- return
new CGI::Cookie
(@param);
+ return
CGI::Cookie->new
(@param);
}
END_OF_FUNC