Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the CGI CPAN distribution.

Report information
The Basics
Id: 31826
Status: resolved
Priority: 0/
Queue: CGI

People
Owner: MARKSTOS [...] cpan.org
Requestors: bitcard.com_2007 [...] forskernet.dk
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: (no value)
Fixed in: (no value)



Subject: CGI::code won't output the string "CGI"
We are currently tracking a minor bug with CGI in our TWiki OSS software: http://develop.twiki.org/~twiki4/cgi-bin/view/Bugs/Item4683 It seems that CGI::code is not able to output the bareword "CGI", a small testcase would be: require CGI; import CGI; print CGI::code('CGIP'); print "\n"; print CGI::code('CGI'); print "\n"; 0; - If it is just us not reading the doc on code properly, excuses up front :-) Best regards, Steffen Poulsen
This is part of a more general bug that can't be fixed. The workaround is to call CGI->code('CGI') or $q=new CGI; $q->code('CGI')
I'm marking this as a resolved since it can't be fixed.