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

stborchert’s picture

Version: 7.x-1.1 » 7.x-1.x-dev
Status: Active » Fixed

Uh, 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).

Status: Fixed » Closed (fixed)

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