cannot update extended profile
-
I cannot update the extended profile.
Reason is the missingjQuery( '#'+formid+' .all_errors' )
element on the extended profile edit page.
file: profile-magic-admin.js
line 1689:var error = jQuery( '#'+formid+' .all_errors' ).html();
if (error == '') {
return true;
} else {
return false;
}Since the
jQuery( '#'+formid+' .all_errors' )
element is missing, error = undefined, which results in the else part and returns false. The form will never be submitted.
I fixed it, adding following workaround code at line 1689:if (jQuery( '#'+formid+' .all_errors' ).length == 0) {
jQuery( '#'+formid).prepend('<div class="all_errors" style="display:none;"></div>');
}
- The topic ‘cannot update extended profile’ is closed to new replies.