Hey,
Ehm in affiliate-sites and dupal-site we use SCRIPT, but w3 complained about the fact that there was no TYPE attribute specified with SCRIPT, I added SCRIPT=\"\" with both tags... (I have no clue what type of script we are using but at least this fixes a bug :)) It worked here locally, let's hope it still does on the wired... Also I corrected a </TTH> into a </TH> somewhere in the code of one of the modules, my eye just caught it, nothing special ;) Jeroen.3-00
parent
74bfacf8cc
commit
f6fd5e1231
|
@ -15,7 +15,7 @@ function affiliate_block() {
|
|||
|
||||
$result = db_query("SELECT * FROM affiliates ORDER BY name");
|
||||
|
||||
$content .= "<SCRIPT>\n";
|
||||
$content .= "<SCRIPT TYPE=\"\">\n";
|
||||
$content .= " <!--//\n";
|
||||
$content .= " function gotosite(site) {\n";
|
||||
$content .= " if (site != \"\") {\n";
|
||||
|
|
|
@ -8,7 +8,7 @@ function drupal_block() {
|
|||
|
||||
$result = db_query("SELECT * FROM drupals ORDER BY name");
|
||||
|
||||
$content .= "<SCRIPT>\n";
|
||||
$content .= "<SCRIPT TYPE=\"\">\n";
|
||||
$content .= " <!--//\n";
|
||||
$content .= " function gotosite(site) {\n";
|
||||
$content .= " if (site != \"\") {\n";
|
||||
|
|
Loading…
Reference in New Issue