Quote:
Originally Posted by kh99
If you create a plugin using hook profile_updateoptions, you can check the values and if they aren't correct, call eval(standard_error()), like
PHP Code:
if (some check for values fails) eval(standard_error("Some error message"));
Look in profile.php, search for fetch_hook('profile_updateoptions') (around line 2411) to see how the values are stored.
|
Thank you so much. Sounds easy enough.

One question though what is the purpose of the area for PHP Validation Code where you set the options? Thanks anyway for your help. I'll try it out and let you know how it went.