Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: Modify record

Quote Reply
Re: Modify record In reply to
Looking at the modify.cgi:

Code:
# If we have been asked to modify a link, let's do it.
CASE: {
$IN->param('modify') and do { _modify(); last CASE; };
$IN->param('LinkID') and do { _modify_passed_in(); last CASE; };
$CFG->{user_required} or $USER and do { _list_owned_links(); last CASE; };

# Otherwise display the modify form.
_modify_form();
}
If you don't set a 'modify' and/or 'LinkID' parameter, but the user is logged in, or required, you'll go to the display link page. You could proabaly force it by:

.../modify.cgi?LinkID=&modify=





PUGDOGŪ Enterprises, Inc.
FAQ:http://LinkSQL.com/FAQ
Forum:http://LinkSQL.com/forum
Subject Author Views Date
Thread Modify record Sir Up 3217 Feb 23, 2001, 4:35 AM
Post Re: Modify record
Stealth 3135 Feb 23, 2001, 6:25 PM
Thread Re: Modify record
pugdog 3136 Feb 23, 2001, 9:18 PM
Thread Re: Modify record
Sir Up 3130 Feb 24, 2001, 1:38 AM
Thread Re: Modify record
Stealth 3114 Feb 24, 2001, 9:12 AM
Post Re: Modify record
Sir Up 3108 Feb 24, 2001, 9:27 AM
Post Re: Modify record
Sir Up 3114 Feb 24, 2001, 9:36 AM
Thread Re: Modify record
Sir Up 3095 Feb 24, 2001, 10:20 AM
Post Re: Modify record
pugdog 3094 Feb 24, 2001, 9:34 PM
Post Re: Modify record
Alex 3097 Feb 26, 2001, 11:47 PM