PDA

View Full Version : Hook for signature changes?


sinucello
10-22-2008, 11:46 AM
Hi,

I have a little plugin that informs us, whenever a user changes certain fields of his profile:

<hookname>userdata_postsave</hookname>
<phpcode><![CDATA[if ($this->condition)
{
$olduserinfo = $this->existing;

$newuserinfo = array(
'field13' => '',
'field14' => '',
'field15' => '',
'field16' => '',
'field7' => '',
'field17' => ''
);

but the signature field doesn`t seem to be covered by this hook? What hook would be the right one for signature changes?

Thank you - all the best,
Sacha

Marco van Herwaarden
10-23-2008, 08:29 AM
Try profile_updatesignature_complete

sinucello
10-29-2008, 09:17 AM
Hello Marco,

thanks a lot.

all the best,
Sacha