Allowed HTML tags fail validation on shared profile
Using Jamroom
check that the custom modules verification is the same as the create. Its totally possible to have html allowed on the create form but not allowed in the update form.
So your looking in:
/modules/(custom module name)/index.php
at the view_(module name)_create() function and view_(module name)_update() function.
Guess is that the _create has something like this:
$_tmp = array(
'name' => 'something_body',
'label' => 10,
'help' => 11,
'type' => 'text',
'validate' => 'printable'
);
jrCore_form_field_create($_tmp);
while the _update() has a different 'validate'
$_tmp = array(
'name' => 'something_body',
'label' => 10,
'help' => 11,
'type' => 'text',
'validate' => 'allowed_html'
);
jrCore_form_field_create($_tmp);
--edit--
If that's the case then change the validate to both to match each other.
Another thing to try is for Beth to try to update what she just created. If she is unable to update, then its probably that above, but if she can update my guess becomes "The profile quota settings are kicking in for that profile, or other problem" and we can go from there.
updated by @michael: 09/08/15 10:42:38PM