- fix create.sql / style3

- fix Spectre memory consumption
 - fix password vidible in debug mode
 - fix No way to add an advertisment to an adspace.
This commit is contained in:
JT Smith 2006-05-25 04:56:12 +00:00
parent 58331a5834
commit 741b523ad3
6 changed files with 48 additions and 18 deletions

View file

@ -99,7 +99,7 @@ Prints out error information.
sub error {
my $self = shift;
my $output = shift;
print "ADMIN: ".$output."\n";
print "ADMIN: [Error] ".$output."\n";
$self->getLogger->error("ADMIN: ".$output);
}
@ -183,6 +183,7 @@ sub runTests {
$self->debug("Running connectivity tests.");
my $configs = WebGUI::Config->readAllConfigs($self->config->getWebguiRoot);
foreach my $config (keys %{$configs}) {
next if $config =~ m/^demo/;
$self->debug("Testing $config");
my $userAgent = new LWP::UserAgent;
$userAgent->agent("Spectre");