On Thu, Dec 23, 2010 at 5:25 AM, Stephen <[email protected]> wrote: > I'm pretty sure it will stop executing any further but unfortunately I'm > reworking a process and haven't finished my amendments to test. > > It's more of a niggle than a problem, anyone know if I need to chuck in some > dies?
What Amit said. And you should only use die() for debugging/error control. Use return instead. You only want to get out of the action, not kill the entire process. Check out the new CakePHP Questions site http://cakeqs.org and help others with their CakePHP related questions. You received this message because you are subscribed to the Google Groups "CakePHP" 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/cake-php?hl=en
