Closed (fixed)
Project:
Webform Rules
Version:
7.x-1.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Dec 2011 at 23:30 UTC
Updated:
1 Jan 2012 at 15:50 UTC
There is a bug easy to solve. In the line 106 of the module file webform_rules.rules.inc the actual code is:
$result = db_query("SELECT nid, title FROM node WHERE type = :type", array(
and I think must to be
$result = db_query("SELECT nid, title FROM {node} WHERE type = :type", array(
If the intallation of your Drupal data base was made with table prefix (i.e. drupal_) with the actual version you will have some errors.
Comments
Comment #1
stborchertUh, thanks for the report. I have no idea how this could slip through ...
Fixed and committed in 7.x-1.x-dev (and 7.x-1.2).