Hello could you tell me what might account for this user error below, so I can correct it? Ta.
user error: Unknown column 'Array' in 'where clause'
query: SELECT COUNT(*) FROM mz_quotes q INNER JOIN mz_node n ON n.nid = q.nid INNER JOIN mz_term_node qtn ON qtn.nid = n.nid WHERE n.status = 1 AND q.promote = 1 AND qtn.tid IN (Array,Array,Array,Array,Array,Array) in /Volumes/Files/Users/chuee/Sites/drupal/includes/database.mysql.inc on line 66
Is it possible to merge 2 forms into one?
For example I have a seperate module, which has a custom form element, which would be added to the existing comment form.
Is this possible? And how if it's possible? I didn't see any function that can combine 2 forms, or maybe I didn't look enough..
The ability to import rss feeds directly into nodes was a *great* was a fantastic feature to older versions of drupal, with this module. Unfortunately, v 4.5.x and 4.6 break this useful module. Are there plans to update this module to functional status?
I would like to add a filter to the new image module so that within a node you can use a tag like [img] and specify attibutes such as the height and width. Then during the process of converting the filter to a real <img> tag it will determine which size is the best to use that one. Also things like clean urls can be conpenated for by just including the node number.
I was thinking of a tag like [img href="1" width="100" height="100"] would convert to <img href="?q=image/view/1/thumbnail" width="100" height="100">
I am trying to make a voting module, in which people can submit a rating within a comment for certain content (like the content type: image, but every contenttype should be able to be "voteable"). Now I am fairly new to drupal coding, but not new to PHP, and after checking out the nodeapi_example at drupaldocs, I am wondering if I would have to hack the existing comment module (since I want people only to be able to give a rating while writing a comment) or that this is possible to add to the comment form by an add-on module.