[phpOpenTracker-devel] Bug in clickpath_analysis
Luigi Tuberga <[email protected]> Mon, 21 Feb 2005 07:57:07 +0000 (UTC)
| Newsgroups | gmane.comp.web.phpopentracker.devel |
|---|---|
| Message-ID | <[email protected]> |
Hi,
the line 242 may be:
for ($i = 0; $i < sizeof($clickpaths); $i++) {
or better
for ($i = 0; $i <= $numClickpaths; $i++) {
and not
for ($i = 0; $i < sizeof($clickpaths) - 1; $i++) {
This bug cause that in GraphViz image map, one visit is omitted. It's
present in a lot of versions.
Bye
Luigi Tuberga