Re: [Phplib-users] PHP Notice: oohforms
Brought to you by:
nhruby,
richardarcher
From: Frank B. <fb...@sy...> - 2004-11-17 16:15:07
|
At 12:40 PM 11/5/04, Layne Weathers wrote: > > >272c272 > > >< if ($el->hidden) { > > >--- > > > > if (is_array($el->hidden)) { > > > > > > PHP Notice: Undefined property: hidden - line 272 > > >That should be: > if (isset($el->hidden) and is_array($el->hidden)) { That did it! |