Gossamer Forum
Home : Products : Links 2.0 : Discussions :

Re: Password Modify Help

Quote Reply
Re: Password Modify Help In reply to
1) You will have to add a field in your links.def file for the Password Field. Read the FAQ in the Resource Center for adding fields to your existing links.db file.

2) You will have to add an input field for the Password field in sub site_html_add_form if you are using the site_html.pl. If not, then you will have to add the input field in the add template files:

add_form.html
add_error.html

3) Your sub site_html_modify_first should look like the following in the site_html_templates.pl file:

Code:
sub site_html_modify_first {
#---------------------------------------------------------
# Modify Access Form

&html_print_headers;
print &load_cgi_template ('modify_first.html', { %globals
});
}

4) In the sub site_html_modify_form, change the $in{'Category'} to $rec{'Category'}.

Hope this helps.

BTW: Since this question regards a Mod that you installed, you should post this type of question in the LINKS MODIFICATION FORUM.

Wink

Regards,

------------------
Eliot Lee....
Former Handle: Eliot
* Check Resource Center
* Search Forums
Subject Author Views Date
Thread Password Modify Help incik 1071 Mar 11, 2000, 4:17 PM
Post Re: Password Modify Help
Stealth 1010 Mar 11, 2000, 4:43 PM