[cgiapp] CGI::App, CGI::Session and CGI::Simple

2004-04-26 Thread Ron Savage
Hi Folks Normally your app using CGI::Session would look like: #!/usr/bin/perl use DBIx::Admin::Application; DBIx::Admin::Application - new() - run(); However, if your try: #!/usr/bin/perl use CGI::Simple; use DBIx::Admin::Application; DBIx::Admin::Application - new(QUERY = CGI::Simple - new()

Re: [cgiapp] CGI::App, CGI::Session and CGI::Simple

2004-04-26 Thread Cees Hek
Ron Savage wrote: V 3.94 has this on line 168: if ( $arg-isa('CGI') ) {... which means only a CGI-derived object can be used. To use CGI::Simple you could - but shouldn't - try: if ( $arg-isa('CGI') || $arg-isa('CGI::Simple') ) {... Obviously it's ridiculous to list all possible class