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 2693 Feb 23, 2001, 4:35 AM
Post Re: Modify record
Stealth 2633 Feb 23, 2001, 6:25 PM
Thread Re: Modify record
pugdog 2631 Feb 23, 2001, 9:18 PM
Thread Re: Modify record
Sir Up 2628 Feb 24, 2001, 1:38 AM
Thread Re: Modify record
Stealth 2610 Feb 24, 2001, 9:12 AM
Post Re: Modify record
Sir Up 2606 Feb 24, 2001, 9:27 AM
Post Re: Modify record
Sir Up 2612 Feb 24, 2001, 9:36 AM
Thread Re: Modify record
Sir Up 2594 Feb 24, 2001, 10:20 AM
Post Re: Modify record
pugdog 2592 Feb 24, 2001, 9:34 PM
Post Re: Modify record
Alex 2595 Feb 26, 2001, 11:47 PM