Closed (fixed)
Project:
Comment Notify
Version:
7.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
19 Nov 2008 at 15:15 UTC
Updated:
30 Dec 2008 at 12:30 UTC
Jump to comment: Most recent file
There is a bug with postgresql and this line :
db_query("UPDATE {comment_notify} c SET c.notify = 0 WHERE notify_hash = '%s'", $arg);
It seems that "c" aliasing is not working but this is working :
db_query("UPDATE {comment_notify} SET notify = 0 WHERE notify_hash = '%s'", $arg);
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | comment_notify.patch | 702 bytes | Yoran |
Comments
Comment #1
gregglesI know it's small, but could you make an actual patch?
Comment #2
Yoran commentedYou are very lasy today :-)
Well... Here it is :)
Comment #3
gregglesI tested this on mysql for 6.x and it worked fine. Committed to 6 and backported to 5. Thanks!