Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Andys User_Edit_Profile Plugin

Quote Reply
Andys User_Edit_Profile Plugin
Andy,

If a user hits the enter button without entering anything in the input fields the users password is erased.


Help!!!
Quote Reply
Re: [rascal] Andys User_Edit_Profile Plugin In reply to
Mmm.. which version are you using?

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Andys User_Edit_Profile Plugin In reply to
Version 1.1

I made no changes, default install.
Quote Reply
Re: [rascal] Andys User_Edit_Profile Plugin In reply to
In Reply To:
Andy,

If a user hits the enter button without entering anything in the input fields the users password is erased.


Help!!!


Yes, I have also noticed this problem :(

P.S. Not sure on what version I did the testing though..

Vishal

Vishal
-------------------------------------------------------
Quote Reply
Re: [rascal] Andys User_Edit_Profile Plugin In reply to
Hi,

In /profile.cgi, can you find;

foreach (my $key ($IN->param()) {
.... other code here (on my other machine, sorry)
}

..and right below that, add;

Code:
if (length($IN->param('Password')) < 4 || !$IN->param('Password')) {
delete $add->{Password};
}

This is untested, but should work :)

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!
Quote Reply
Re: [Andy] Andys User_Edit_Profile Plugin In reply to
Cool

Andy,

Thanks for your support, your code worked fine!

Support means alot when you are considering purchasing a Plugin.

Andy has always provided support for his Plugins and I know that people appreciate his efforts.

Thanks Again!!!Cool
Quote Reply
Re: [rascal] Andys User_Edit_Profile Plugin In reply to
Hi,

Glad it worked Cool

I'll get that updated in the distributed version ASAP.

Cheers

Andy (mod)
andy@ultranerds.co.uk
Want to give me something back for my help? Please see my Amazon Wish List
GLinks ULTRA Package | GLinks ULTRA Package PRO
Links SQL Plugins | Website Design and SEO | UltraNerds | ULTRAGLobals Plugin | Pre-Made Template Sets | FREE GLinks Plugins!