View Single Post
  #11 (permalink)  
Old 02-08-2008, 04:39 PM
imlerim imlerim is offline
New Pligger
 
Join Date: Jan 2008
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
Great solution Redwine but seems that you forgot the most important part...

Without setting the links status table to accept "pending", it will set it empty...
I had to search for your other posts to find a solution...

Code:
alter TABLE table prefix_links
change link_status link_status enum('discard','queued','published','abuse','duplicated','pending') NOT NULL default 'discard'
;
Again thanks for the trick and the tutorial
Reply With Quote