On Oct 3, 2011, at 10:25, Yves S. Garret wrote: > Well, to be specific, I couldn't find anything on modifying the tabs vs. > spaces info online after googling.
That's really not a CakePHP question, but my text editor has a function for doing that; see if your text editor does. Or, if you like the UNIX command line, the "expand" command is useful. For example to convert tabs to spaces at 4 spaces per indent: expand -t 4 somefile > x Examine x, make sure it looks like you want it, then: mv x somefile -- Our newest site for the community: CakePHP Video Tutorials http://tv.cakephp.org Check out the new CakePHP Questions site http://ask.cakephp.org and help others with their CakePHP related questions. To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/cake-php
