Closed (fixed)
Project:
Invite
Version:
6.x-2.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
3 Sep 2008 at 16:20 UTC
Updated:
5 Sep 2008 at 22:50 UTC
Thanks for the first dev version for D6.
I've noticed 2 typo erros in sql query at line no 260 and 263
the word cancelled has been typed as canceled.
In the db the column is cancelled.
invite.admin.inc 260 and 263
if ($_GET['sort'] == 'asc') {
$status_sort = "IF(i.joined != 0, 0, 1) $sort, IF(i.expiry < $now, 0, 1) $sort, i.canceled";
}
else {
$status_sort = "i.canceled $sort, IF(i.expiry < $now, 0, 1) $sort, IF(i.joined != 0, 0, 1)";
}
Comments
Comment #1
sangamreddi commentedsame at line no 345, 348, 350.
IMO the db column name has to be changed 'canceled' instead of 'cancelled'..
Thanks.
Sunny
www.gleez.com
Comment #2
sangamreddi commentedIt has to be fixed here in invite.install.
line no 311.
This particular issue raises when you update invite module from earlier version to this.
Thanks
Comment #3
smk-ka commentedFixed, thanks again!
Comment #4
smk-ka commentedComment #5
sangamreddi commentedthanks