when it is created it has no prefix, but the code expects a prefix so there are errors when using a site with a prefix in the database:

_cache_browscap' doesn't exist query:

etc. etc.

Comments

blb’s picture

the culprit is line 24 of browscap.install:

$queries &= db_query("CREATE TABLE cache_browscap (

should be:

$queries &= db_query("CREATE TABLE {cache_browscap} (

the curly braces are missing.

mikeryan’s picture

Status: Active » Fixed

Fix commited to DRUPAL-5 branch, thanks!

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.