When running cron, this error pops up:
Unknown column "d.created" in "where clause" query: SELECT d.nid FROM decisions d INNER JOIN node n ON d.nid = n.nid WHERE (d.created + d.runtime) < 1249026115 AND d.active = 1 AND d.runtime <> 0 in /sites/all/modules/decisions/decisions.module on line 82
I'm guessing the d.created should be n.created, so I made a patch for that.
| Comment | File | Size | Author |
|---|---|---|---|
| decisions_cron.patch | 981 bytes | blackdog |
Comments
Comment #1
anarcat commentedActually, "created" is the node creation date, not the start date for the decision. I fixed this properly in CVS, thanks for reporting the issue.