On Sat, 8 Dec 2001, Nick wrote: > Hi all, > > I browsed through CGI::Application's documentation for a bit, > yet could not find any way to pass any pragmas like -no_xhtml > onto CGI.pm, am I stuck with editing CGI::Application.pm, or is > there something I missed?
I believe this is a limitation of CGI::App. Instead of editting the code, you can use CGI.pm the old fashioned way: use CGI: my $q = new CGI; There is some discussion in the email archives about the "gotchas" with this. (Primarily, I remember that the CGI::App and CGI.pm "param" functions can get mixed up in some cases). -mark http://mark.stosberg.com/ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
