Wespointer.
I changed this code
PHP Code:
if ($file['_author'] == '')
$_author = $vbphrase['ecdownloads_unknown'];
else
$_author = $file['_author'];
to
PHP Code:
if ($file['_author'] == '')
$_author = $file['author'];
else
$_author = $file['_author'];
Instead of getting uknown on my old downloads it's shows the authors name but it's not linked. Just the new downloads are.
Is it ok to change this code, Let me know.