Upon enabling the module I received this error on:
/admin/build/modules/list/confirm

Fatal error: Call to undefined function system_schema() in /sites/all/modules/so_taxes/so_taxes.install on line 100

Drupal: 6.14
Ubercart: 6.x-2.0

CommentFileSizeAuthor
#1 system_schema.patch597 bytesbrenda003

Comments

brenda003’s picture

Status: Active » Needs review
StatusFileSize
new597 bytes

It looks like 100 where it's:

  $system_module_schema = system_schema();
  $tables['cache_so_tax_rates'] = $system_module_schema['cache'];

Should be using:

  $tables['cache_so_tax_rates'] = drupal_get_schema_unprocessed('system', 'cache');

Patch provided.

kruser’s picture

Worked for me. Thanks!

Service Objects’s picture

Assigned: Unassigned » Service Objects
Status: Needs review » Patch (to be ported)

Fixed in trunk. Release coming soon.

Service Objects’s picture

Status: Patch (to be ported) » Fixed

Fixed in latest release.

Status: Fixed » Closed (fixed)

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