Re: semicolon usage in views

2007-04-25 Thread Dustin Weber
Yeah.. I now remember that. It's been a while since I haven't put the semicolons, so I guess I just forgot. Thanks for the refresher! Dustin Weber On Apr 25, 8:37 am, Jeremy Pointer <[EMAIL PROTECTED]> wrote: > This has nothing to do with cake and everything to do with php > for e.g. in any

Re: semicolon usage in views

2007-04-25 Thread Jeremy Pointer
This has nothing to do with cake and everything to do with php for e.g. in any php file the following will work: but this won't The parser automatically assumes that if you close the tag you meant to put a semicolon there. Dustin Weber wrote: > Tried searching for this, but it's a tough se

semicolon usage in views

2007-04-25 Thread Dustin Weber
Tried searching for this, but it's a tough search to refine. Basically, I am simply trying to understand when/if we need semicolons in a view when using a helper. In fact, I've noticed that I don't even need the semicolon when just 'echoing' a var in a view, so it isn't just related to helpers.