I will list bad links as I find them...I need help sorting these out...
1) In Coranto.cgi, here, around line 158:
- Code: Select all
# This roundabout method of printing CSS code exists to make things easier for addons.
sub PrintCSS {
unless($CConfig{'HeadCSS'}){
&ReadConfigInfo();
}
my $css = $CConfig{'HeadCSS'};
# HOOK: PrintCSS
if($Addons{'PrintCSS'}){my $w;foreach $w (@{$Addons{'PrintCSS'}}){my $addon=$w->[2];eval ${$w->[0]};AErr($addon,$@)if $@;};}
if ($css) {
return qq~<style type="text/css">
<!--
$css
-->
</style>~;
}
else {
return q~<link rel="stylesheet" type="text/css" href="ht tp: //www.go coranto.com/coranto/crscript.css">~;
}
}
As you can see, it references a /coranto/crscript.css file.
Can someone shed light on this?
