diff options
author | Jeroen Bensch <jeroen@44.no-reply.drupal.org> | 2001-03-11 20:18:02 +0000 |
---|---|---|
committer | Jeroen Bensch <jeroen@44.no-reply.drupal.org> | 2001-03-11 20:18:02 +0000 |
commit | f6fd5e1231d8dee2f347fc69cfef873d14380722 (patch) | |
tree | e44cb398e08fc531df1cbdf27cf71385871d6b7a | |
parent | 74bfacf8ccf42b155fa8d0c9b6473978b8c1f510 (diff) | |
download | brdo-f6fd5e1231d8dee2f347fc69cfef873d14380722.tar.gz brdo-f6fd5e1231d8dee2f347fc69cfef873d14380722.tar.bz2 |
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.
-rw-r--r-- | modules/affiliate-site.module | 2 | ||||
-rw-r--r-- | modules/drupal-site.module | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/modules/affiliate-site.module b/modules/affiliate-site.module index 1f004d11c..3f88c01ba 100644 --- a/modules/affiliate-site.module +++ b/modules/affiliate-site.module @@ -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"; diff --git a/modules/drupal-site.module b/modules/drupal-site.module index d4742b681..63a620f84 100644 --- a/modules/drupal-site.module +++ b/modules/drupal-site.module @@ -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"; |