Page 1 of 1

{help} link protector

PostPosted: Mon Jan 23, 2012 1:21 pm
by smarter
i would like to change my site's link protector , showing top10 links to top50 links on top.php page? must show minimum 50 links on top.php
how to change?

Re: {help} link protector

PostPosted: Wed Jan 25, 2012 4:13 am
by SamEA
In ./top.php, find:
Code: Select all
if($i == 10) break;


Replace with:
Code: Select all
if($i == 50) break;


I have not tested this, but in theory it should work. Let me know if it works.

Re: {help} link protector

PostPosted: Wed Jan 25, 2012 6:48 am
by smarter
thanks sam