HTML Logo by World Wide Web Consortium (www.w3.org). Click to learn more about our commitment to accessibility and standards.

Skip navigation

Editing members

Title Editing members
Description An error may be shown when editing a member profile.
Affects Sites with numeric custom profile fields and mySQL 5 strict mode
Fix Change lines 129-137 (approximately) of personalzone/pages/modules/editprofile.php from:

Code

         $actual_custom_fields[$custom_field['id']]=post_param('custom_'.$custom_field['id'].'_value');
to:

Code

         if (($custom_field['cf_type']=='integer') || ($custom_field['cf_type']=='tick'))
         {
            $actual_custom_fields[$custom_field['id']]=post_param_integer('custom_'.$custom_field['id'].'_value');
         } else
         {
            $actual_custom_fields[$custom_field['id']]=post_param('custom_'.$custom_field['id'].'_value');
         }


Trackbacks

There have been no trackbacks yet


There have been no comments yet


Make comment
Your name: (join or login)
Subject:
Your message: