user warning: Table 'v305.og' doesn't exist query: SELECT n.nid, n.title FROM test_node n INNER JOIN og ON n.nid = og.nid ORDER BY n.title in /home/apache2/test/http/sites/all/modules/menutrails/menutrails.module on line 316.

It seems that the table prefix "test_" is missing in this query. The correct table name should be "test_og" instead of "og"

CommentFileSizeAuthor
#2 menutrails.module.patch742 bytescrischan
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

FinTrader’s picture

Fixed query in line 316:
$result = db_query('SELECT n.nid, n.title FROM {node} n INNER JOIN {og} ON n.nid = {og}.nid ORDER BY n.title');

crischan’s picture

FileSize
742 bytes

Here's the patch for it.

sun’s picture

Status: Active » Fixed

Thanks for reporting, reviewing, and testing! Committed to all branches.

A new development snapshot will be available within the next 12 hours. This improvement will be available in the next official release.

Status: Fixed » Closed (fixed)

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