Closed (fixed)
Project:
Donation
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
25 May 2009 at 22:46 UTC
Updated:
9 Jun 2009 at 02:30 UTC
Correct me if I am wrong, but I get this error upon install:
* user warning: Table 'drupal.donations' doesn't exist query: SELECT COUNT(*) FROM donations d in /var/www/drupal/public_html/sites/all/modules/donation/donation.module on line 458.
* user warning: Table 'drupal.donations' doesn't exist query: SELECT d.* FROM donations d ORDER BY timestamp DESC LIMIT 0, 25 in /var/www/drupal/public_html/sites/all/modules/donation/donation.module on line 458.
So I assume that this, from line 21 of donation.install:
<?php
$schema['donation'] = array( /* ... */);
?>
Should be:
<?php
$schema['donations'] = array( /* ... */);
?>
I made no patch because I assume this is a quick fix, right?
Comments
Comment #1
kbahey commentedThank you. Fixed.