Home : Products : Others : Gossamer Community :

Products: Others: Gossamer Community: Re: [maxpico] UACK! Debug always on?: Edit Log

Here is the list of edits for this post
Re: [maxpico] UACK! Debug always on?
This is a quick untested fix. In Community.pm about 3/4 of the way down change:

Code:
sub comm_fatal {
# -------------------------------------------------------------------
$error = shift; # Set the global $Communtiy::error
require Carp;
Carp::croak $error;
}

...to...

Code:
sub comm_fatal {
# -------------------------------------------------------------------
$error = shift; # Set the global $Communtiy::error
print $IN->header();
print "An error occured: $error";
}

Last edited by:

Paul: Apr 7, 2003, 7:39 AM

Edit Log: