PDA

View Full Version : Remove Validating????


Anonymous
03-21-2005, 03:46 AM
is there anyway to remove the validating?
so that when a user submits a link, it shows up right away?

thanks
eclv

David
03-21-2005, 04:16 AM
Yes, would just need to change the default value for the accepted field in the links table to 1. Let me know if you need help doing this. I think just need to look at the data that is submitted on the form.

IGonza
03-21-2005, 11:06 AM
Content visible to registered users only.

What validating do you mean?

David
03-21-2005, 08:33 PM
He means make it so the link is automaticall accepted.

IGonza
03-21-2005, 09:35 PM
Ok.
I think we will add this option to config.php in the next version.
But for now, for version 'directory1.07' :
Open file addlink.php :
line 63 :
change
$link->accepted = 0;
on
$link->accepted = 1;

That's it.