[phpOpenTracker-devel] [Bug #9351] Simple_report always show current time for first access

[email protected] Thu, 2 Nov 2006 19:59:38 -0800 (PST)
Newsgroups gmane.comp.web.phpopentracker.devel
Message-ID <[email protected]>
Bug #9351, was updated on 2006-Nov-02 19:59
Here is a current snapshot of the bug.

Project: phpOpenTracker
Category: None
Status: Open
Resolution: None
Bug Group: None
Priority: 5
Submitted by: dandv
Assigned to : none
Summary: Simple_report always show current time for first access

Details: date($dateFormat, isset($firstAccess) ? $firstAccess : $time)

needs to be replaced with

date($dateFormat, isset($row['first_access']) ? $row['first_access'] : $time),

in simple_report/index.php

Also, $lastAccess on the next line is never computed.

For detailed info, follow this link:
http://developer.berlios.de/bugs/?func=detailbug&bug_id=9351&group_id=2025