Gossamer Forum
Home : Products : Gossamer Links : Version 1.x :

modify posting

Quote Reply
modify posting
Hi

I want allow a user to edit his post based on another field than Current URL.

Is this possible?

Thanks.

Are

Quote Reply
Re: modify posting In reply to
Not without some editing, no. You need to go into modify.cgi and change the lookup:

$links = $db->query ( { URL => $in->param('Current URL'), ww => 1 } );


This does a search for URL => what was passed in. You could change this to ID => $in->param('Current ID') to search based on ID.

Hope this helps,

Alex