Quote:
Originally Posted by elsupremo
Unfortunately, it's true - accepting a moderated link does not remove it from the moderation queue.
However - I just checked something, I could be wrong - but if you have anything other than "0" in the Review frequency field of the link properties, then it will stay in the moderation queue. So, if you want the entries gone, put "0" in that field and it will be gone.
David
|
Bug confirmed. As you say, it occurs when there is a value other than zero in the review frequency field. It will be fixed in 2.0.6, but in the meantime, if this is urgent, the fix in version 2.0.5 is as follows.
Edit local_links.php. Go to line 1881 to 1893, which read as follows:
Code:
if ($submit == 'submit') {
if ($statuscheck == $LINK_NO_ACCESS) {
$err = $vbphrase['ll_error_protocol'].' '.$linkurl.' <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
eval(standard_error($err));
exit;
} elseif ($statuscheck == $LINK_NO_REMOTE_DOWNLOADS) {
$err = $vbphrase['ll_error_remote'].' '.$linkurl.'. <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
eval(standard_error($err));
exit;
}
$statustime = TIMENOW;
Move line 1893
Code:
$statustime = TIMENOW;
immediately before 1881, ie just before the if test, so that the code reads as follows:
Code:
$statustime = TIMENOW;
if ($submit == 'submit') {
if ($statuscheck == $LINK_NO_ACCESS) {
$err = $vbphrase['ll_error_protocol'].' '.$linkurl.' <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
eval(standard_error($err));
exit;
} elseif ($statuscheck == $LINK_NO_REMOTE_DOWNLOADS) {
$err = $vbphrase['ll_error_remote'].' '.$linkurl.'. <a href='.$url.'><b>'.$vbphrase['ll_return'].'</b></a>';
eval(standard_error($err));
exit;
}