Hi!

One feature of the current project where I am working, is sending an
email notification with some information about the recent created
object.

Bellow, is an action which already had worked on the past!

public function executeCreate(sfWebRequest $request)
 {
  try
  {
   parent::executeCreate($request);
  }
  catch (sfStopException $e)
  {
   $this->notifyAdmin($request);

   throw new sfStopException();
  }
 }

I do not quite understand the possible cause, once the project were it
was used, is connected to a symfony release tag (1_4_4) and I assume
that no changes were made. Now, the code of the catch block is never
executed.

Help will be appreciated!

Thanks in advance, Best regards!

-- 
If you want to report a vulnerability issue on symfony, please send it to 
security at symfony-project.com

You received this message because you are subscribed to the Google
Groups "symfony users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/symfony-users?hl=en

Reply via email to