Customers cannot access their account details, and are met with the following error:
Fatal error: Call to undefined function validate_form_data() in /wpsc-account-edit-profile.php on line 14
This is from wpsc-account-edit-profile.php
<form method="post">
<?php echo validate_form_data(); ?>
<table>
<?php wpsc_display_form_fields(); ?>
<tr>
<td></td>
<td>
<input type="hidden" value="true" name="submitwpcheckout_profile" />
<input type="submit" value="<?php _e( 'Save Profile', 'wpsc' ); ?>" name="submit" />
</td>
</tr>
</table>
Specifically Line 14:
<?php echo validate_form_data(); ?>
Does anyone have an idea what the problem is and how it could possibly be fixed? Thanks!