Quote:
Originally Posted by sheikfreik
Hey there,
just found this mod and it's exactly what I was looking for...except...is there a way to add the coding for 2003->2005 so that stats from years past can be retrieved? My members wanted to know the stats from '05 and, at the moment, the activity add-on only will show stats from the current year on
thanks in advance if you can help
- Joe
|
I wanted the same thing, here's what I did... I edited
activity.php and changed this:
PHP Code:
// generate years dropdown
for($i = intval(vbdate('Y')); $i < intval(vbdate('Y')) + 4; $i++)
{
to this:
PHP Code:
// generate years dropdown
for($i = intval(vbdate('Y')); $i > intval(vbdate('Y')) - 4; $i--)
{
Hope that helps
The only problem is that it counts down rather than up, if you want it the other way around, I think this would work:
PHP Code:
// generate years dropdown
for($i = intval(vbdate('Y')) - 4; $i < intval(vbdate('Y')) + 4; $i++)
{
But I haven't tested it so...
MGM out