Thread: Buggy Notes
View Single Post
Old 03-24-2003, 12:57 AM   #2
Verboden Faction
 
Posts: n/a
I fixed it.  Just changed this:

[code] if (free_time && pnote->date_stamp < current_time - free_time)[/quote]

to this:

[code] if (free_time && pnote->date_stamp > current_time - free_time + 1000000000000)[/quote]
  Reply With Quote