is it possible to include a screenshot with a non-image upload? instead of having it as a url, have it as a upload. is that possible?
btw, is this hack still being supported?
edit:
im wondering if it's possible to edit the local_links.php so that it will allow the user to upload an image instead of specifying a url for the location of the image. here is the part that needs editing in local_links.php:
PHP Code:
if ($linkimg) {
$imgcheck = check_url($linkimg);
if ($imgcheck == $LINK_NO_ACCESS) {
$err = $vbphrase['ll_error_protocol'].' '.$linkimg.'. <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
eval(standard_error($err));
exit;
} elseif ($imgcheck == $LINK_NO_REMOTE_DOWNLOADS) {
$err = $vbphrase['ll_error_remote'].' '.$linkimg.'. <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
eval(standard_error($err));
exit;
}
}
can anyone help?