I changed it just a little bit on my forum, so it shows something like this:
There have been x posts in the last 24 hours, which resolves in estimated average of x posts/month or x posts/year.
Check it out live at:
www.goldenretrieverforum.com, at the bottom of the front page.
All I added was this line to xml, right above where it say: $posts_last_x_hours = construct_phrase....:
PHP Code:
$in_one_month = $posts_last_x_hours * 30;
$in_one_year = $posts_last_x_hours * 365;
and changed the line below to:
PHP Code:
$posts_last_x_hours = construct_phrase($vbphrase['posts_last_x_hours'], $posts_last_x_hours, $vbulletin->options['posts_last_x_hours_numhours'], $in_one_month, $in_one_year);
And then on a display line, again in the same product xml I changed it to:
PHP Code:
<phrase name="posts_last_x_hours" date="0" username="" version=""><![CDATA[There have been {1} posts in the last {2} hours, which resolves in estimated average of {3} posts/month or {4} posts/year.]]></phrase>
This change will only work assuming you will always use 24 hour config setting.
Joe