Quote:
Originally Posted by m-e-h.com
Second possible solution: The reload-time or the whole reload-options could be set by the user within preset - admin-defined - ranges. Maybe with a hint like "This can produce additional traffic...".
|
Well I found a way to realize that - it's just "quick and dirty" but the problem is solved:
I added a profile-field (text) where you can enter a refresh-time in seconds and in Template "PAGER" I replaced
Code:
var refreshtime = {$vboptions['vbpager_ajax_refresh']};
with
Code:
var refreshtime = (parseInt("0$bbuserinfo[field14]",10) > $vboptions[vbpager_ajax_refresh]) ? parseInt("0$bbuserinfo[field14]",10) : $vboptions[vbpager_ajax_refresh];
What's going up?
The user enters a time X in the UserCP. It's been compared with the preset time Y defiened by the admin. If the user-time is higher than the admin-time, the refresh is done all X seconds.
If the user enters a time which is lower than the Y or anything other than a nuber, teh refres will be done all Y secons.
Maybe you could possibly include a function like that in the next version?!
cm