Skip to content

Commit

Permalink
removed debuging query code
Browse files Browse the repository at this point in the history
  • Loading branch information
thijsvdanker authored and bholtsclaw committed Jan 18, 2012
1 parent f9196e9 commit b29ca1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/webform/ajax_webform.module
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function ajax_webform_ajax_types(&$types) {
' n.title ' .
'FROM {node} n ' .
'WHERE n.type IN ('.$in.')';
$res = db_queryd($q);
$res = db_query($q);
while ($row = db_fetch_array($res)) {
$id = 'webform_client_form_' . (int) $row['nid'];
$types[$id] = t('Webform: ' . $row['title']);
Expand Down

0 comments on commit b29ca1d

Please sign in to comment.