Closed (fixed)
Project:
SEO Watcher
Version:
6.x-1.0-beta2
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
17 Jun 2010 at 14:38 UTC
Updated:
1 Jul 2010 at 15:30 UTC
Hi mate, SEO watcher is a great little module, it's been a big help to me :)
Anyway the x-axis labels appear to be the other way around to the graph (the graphic is left to right from youngest to oldest, and the axis is left to right from oldest to youngest). I made a little fix to this by simply reversing the $ranks variable in seowatcher.module, and modified lines 196-198 from this:
$ranks = seowatcher_load_past_rankings($provider, $keyword);
$legend .= seowatcher_get_provider_name($provider) . '|';
to this:
$ranks = seowatcher_load_past_rankings($provider, $keyword);
$legend .= seowatcher_get_provider_name($provider) . '|';
$ranks = array_reverse($ranks);
Comments
Comment #1
armanschwarz commentedoh sorry for some reason I didn't see the list of existing issues, I see this has already been dealt with.. my bad.
Comment #2
pixture commentedCurrently fix in included in dev snapshot version. Next release will include this fix too.