fixed some bugs in URL/Content handlers. fixed some bugs in Gallery.

This commit is contained in:
Doug Bell 2007-12-18 15:38:06 +00:00
parent 4c70aa4c71
commit 30f22c9b7a
10 changed files with 96 additions and 67 deletions

View file

@ -68,15 +68,15 @@ sub handler {
$session->http->sendHeader();
$session->output->print($output)
}
if ($session->errorHandler->canShowDebug()) {
$session->output->print($session->errorHandler->showDebug(),1);
}
if ($session->errorHandler->canShowDebug()) {
$session->output->print($session->errorHandler->showDebug(),1);
}
}
last;
}
}
}
WebGUI::Affiliate::grabReferral($session); # process affiliate tracking request
}
WebGUI::Affiliate::grabReferral($session); # process affiliate tracking request
$session->close;
return Apache2::Const::OK;
});