Quote:
Originally Posted by RS_Jelle
After beta 1 of ecDownloadsII 5.0, there's now beta 2
|
Good job!
Only a template needs to be fixed :
replace the contents of downloads_memberfiles_bit
HTML Code:
<tr>
<td class="alt1">
<a href="downloads.php?do=file&fileid={$file['id']}">{$file['name']}</a>
</td>
<td class="alt1">
$smalldesc
</td>
<td class="alt1">
$date
</td>
<td class="alt1">
$downloads
</td>
</td>
with this
HTML Code:
<tr>
<td class="alt1">
<a href="downloads.php?do=file&fileid={$file['id']}">{$file['name']}</a>
</td>
<td class="alt1">
$smalldesc
</td>
<td class="alt1">
$downloads
</td>
<td class="alt1">
$date
</td>
</tr>