benzoman managed to get this to work with v2. Don't remember if benzoman had to change anything but here you go....
Open index.php
Find:
- Code: Select all
foreach($downloads as $dl) {
Replace:
- Code: Select all
$lastSURL = null;
foreach($downloads as $dl) {
$siteLink = '<a href="http://'.$dl['surl'].'/" target="_blank">'.$dl['sname'].'</a>';
if($lastSURL == $dl['surl'])
$siteLink = "^";
$lastSURL = $dl['surl'];
Find where you want to echo it, use:
- Code: Select all
$siteLink
For example of above:
- Code: Select all
<?=$siteLink?>
Original Poster: benzoman
