On Tue, Mar 05, 2013 at 02:23:38PM +0100, Alexander Griesbaum wrote:
> On Mar 5, 2013, at 1:37 PM, Lukas Fleischer wrote:
>
> > + if ($line[0] = '#') {
> > + continue;
> > + }
>
> Do you mean
> if ($line[0] == '#') {
Yes, I changed this to
if (empty($line) || $line[0] == '#') {
during testing but forgot to amend the commit.
`git commit -a --amend`'ed locally. Thanks!
> ?
>
> Alex
