in reply to Re: Undesired array growth
in thread Undesired array growth

should be
del(\@{$meta[$page+1]},0);

$meta[$page+1] already contains an array reference so it should be:

del($meta[$page+1],0);

Replies are listed 'Best First'.
Re^3: Undesired array growth
by apok (Acolyte) on Jan 09, 2009 at 04:12 UTC
    Good point, thanks. Updated those, but the problem is still occurring. =/
Re^3: Undesired array growth
by jdporter (Paladin) on Jan 09, 2009 at 03:20 UTC
    Good catch. And the same is true for the other two calls to del() as well.